Toggl Track MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Toggl Track MCP or direct API to create time entries, start timers, manage projects, and pull workspace reports through natural language.

Toggl Track logoToggl Track
Api Key

Toggl Track is a time tracking platform for recording work, organizing projects, and managing workspaces. It helps teams understand where time goes with clear reports, billable hours, and lightweight workflows.

21 Tools

Try Toggl Track now

Type what you want done — sign in and watch it run live in the Tool Router playground.

TOOL ROUTER PLAYGROUND
Toggl Track
Try asking
TOOLS

Supported Tools

Every Toggl Track action and event your agent gets out of the box.

Bulk Update Time Entries

Apply the same description and/or billable state to 1 to 100 Toggl Track time entries in one provider-native request.

Create Client

Create a client in a workspace for grouping projects.

Create Project

Create a project in a workspace for organizing time entries and tasks.

Create Task

Create a task under an active project for more specific time-entry assignment.

Create Time Entry

Create a running or completed time entry in a workspace; omit duration and stop to start a running timer.

Delete Client

Permanently delete one client from a Toggl Track workspace.

Delete Project

Delete one project while preserving its time entries by unassigning them from the project.

Delete Task

Permanently delete one task from its parent project.

Delete Time Entry

Permanently delete one time entry from a workspace.

Get Current Time Entry

Return the currently running time entry for the connected user, or indicate that no timer is running.

Get Current User

Return the connected Toggl Track user's identity and defaults, including the default workspace ID, without exposing credentials.

Get Time Entry

Get one time entry by ID, with optional related-entity and sharing metadata.

List Time Entries

List the connected user's time entries in an explicit date range, optionally including related project, task, user, and sharing metadata.

List Workspace Resources

Find projects, clients, tags, or tasks in a workspace and return their IDs for time-entry and resource-management tools.

List Workspaces

List workspaces accessible to the connected user and return the IDs needed by workspace-scoped tools, without exposing private tokens or calendar URLs.

Run Detailed Time Report

Return one page of detailed, grouped time-entry report rows for a workspace and date range, with an opaque cursor for the next page.

Stop Time Entry

Stop a currently running time entry and return its finalized timing data.

Update Client

Update a client's name, notes, or external reference.

Update Project

Update a project's name, client, active state, privacy, color, or date range.

Update Task

Update a task's name, completion state, estimate, assignee, or external reference.

Update Time Entry

Update the timing, description, assignment, billable state, or tags of an existing time entry.

SETUP GUIDE

Connect Toggl Track MCP Tool with your Agent

1

Install Composio

typescript
npm install @composio/core ai @ai-sdk/openai @ai-sdk/mcp
Install the Composio SDK for Python or TypeScript
2

Initialize Client and Create Tool Router Session

typescript
import { Composio } from '@composio/core';

const composio = new Composio({ apiKey: 'your-api-key' });
const session = await composio.create('your-user-id');
console.log(`Tool Router session created: ${session.mcp.url}`);
Import and initialize the Composio client, then create a Tool Router session for Toggl Track
3

Connect to AI Agent

typescript
import { openai } from '@ai-sdk/openai';
import { experimental_createMCPClient as createMCPClient } from '@ai-sdk/mcp';
import { generateText } from 'ai';

const client = await createMCPClient({
  transport: {
    type: 'http',
    url: session.mcp.url,
    headers: {
      'x-api-key': 'your-composio-api-key',
    },
  },
});

const tools = await client.tools();
const { text } = await generateText({
  model: openai('gpt-4o'),
  tools,
  messages: [{
    role: 'user',
    content: 'Create a Toggl Track time entry for 2 hours of backend API work in my Engineering project'
  }],
  maxSteps: 5,
});

console.log(`Agent: ${text}`);
Use the MCP server with your AI agent (Anthropic Claude or Mastra)
SETUP GUIDE

Connect Toggl Track API Tool with your Agent

1

Install Composio

typescript
npm install @composio/openai
Install the Composio SDK
2

Initialize Composio and Create Tool Router Session

typescript
import OpenAI from 'openai';
import { Composio } from '@composio/core';
import { OpenAIResponsesProvider } from '@composio/openai';

const composio = new Composio({
  provider: new OpenAIResponsesProvider(),
});
const openai = new OpenAI({});
const session = await composio.create('your-user-id');
Import and initialize Composio client, then create a Tool Router session
3

Execute Toggl Track Tools via Tool Router with Your Agent

typescript
const tools = session.tools;
const response = await openai.responses.create({
  model: 'gpt-4.1',
  tools: tools,
  input: [{
    role: 'user',
    content: 'Create a Toggl Track time entry for 2 hours of backend API work in my Engineering project'
  }],
});
const result = await composio.provider.handleToolCalls(
  'your-user-id',
  response.output
);
console.log(result);
Get tools from Tool Router session and execute Toggl Track actions with your Agent

Why Use Composio?

AI Native Toggl Track Integration

  • Supports both Toggl Track MCP and direct API based integrations
  • Structured, LLM-friendly schemas for reliable time entry, project, workspace, report, and webhook actions
  • Rich coverage for reading, writing, and querying your Toggl Track data without building custom API wrappers

Managed Auth

  • Secure API key handling so you don't hard-code Toggl Track credentials in your agent code
  • Central place to manage, scope, and revoke Toggl Track access per user
  • Works cleanly across development, staging, and production environments

Agent Optimized Design

  • Tools are tuned for AI agents, so your assistant can understand Toggl Track actions like creating time entries or fetching reports
  • Comprehensive execution logs show what ran, when it ran, and on whose behalf
  • Less glue code, fewer brittle prompts, and a smoother path from prototype to production

Enterprise Grade Security

  • Fine-grained RBAC so you control which agents and users can access Toggl Track
  • Scoped, least privilege access to Toggl Track resources such as workspaces, projects, and reports
  • Full audit trail of agent actions to support review, billing checks, and compliance
FAQ

Frequently asked questions

Yes, Toggl Track requires you to configure your own API key. Once set up, Composio handles secure credential storage and API request handling for you. In code, use auth_configs.create() for the API key auth config, connected_accounts.link() to connect a user, and mcp.create() when you want to create a dedicated MCP server.

Yes! Composio's Tool Router enables agents to use multiple toolkits. Learn more.

Composio is SOC 2 and ISO 27001 compliant with all data encrypted in transit and at rest. Learn more.

Composio maintains and updates all toolkit integrations automatically, so your agents always work with the latest API versions.

Start with Toggl Track.It takes 30 seconds.

Managed auth, hosted MCP servers, and every Toggl Track tool your agent needs.Free to start.

Start building