PluginBench
MCP Server

io.github.souravpn/toggl-mcp MCP Server

io.github.souravpn/toggl-mcp

What is the io.github.souravpn/toggl-mcp MCP server?

MCP server for Toggl Track — gives Claude access to your time tracking data

How to install io.github.souravpn/toggl-mcp

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • TOGGL_API_TOKEN
    required
    secret

    Your Toggl Track API token. Get it from https://track.toggl.com/profile — scroll to the bottom and click 'Click to reveal'

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "toggl-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@souravpn/toggl-mcp"
      ],
      "env": {
        "TOGGL_API_TOKEN": "<YOUR_TOGGL_API_TOKEN>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "toggl-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@souravpn/toggl-mcp"
      ],
      "env": {
        "TOGGL_API_TOKEN": "<YOUR_TOGGL_API_TOKEN>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "toggl-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@souravpn/toggl-mcp"
      ],
      "env": {
        "TOGGL_API_TOKEN": "<YOUR_TOGGL_API_TOKEN>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "toggl-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@souravpn/toggl-mcp"
      ],
      "env": {
        "TOGGL_API_TOKEN": "<YOUR_TOGGL_API_TOKEN>"
      }
    }
  }
}
Claude Code
claude mcp add toggl-mcp --env TOGGL_API_TOKEN=<YOUR_TOGGL_API_TOKEN> -- npx -y @souravpn/toggl-mcp

Related MCP servers

MCP server for WHOOP — gives Claude access to your recovery, sleep, strain, and workout data

View repository →