TimeCampTimeCamp Docs

MCP Server

The TimeCamp MCP (Model Context Protocol) server allows AI assistants to interact with your TimeCamp data directly. You can start, stop, and manage time entries, browse projects and tasks, and more — all through natural language conversations with your favorite AI tool.

MCP is an open standard that enables AI models to securely connect to external data sources and tools. Learn more at modelcontextprotocol.io.

Server URL

https://mcp.timecamp.com/mcp

What you can do

With the TimeCamp MCP server, your AI assistant can:

  • Start and stop time tracking
  • Create and manage time entries
  • Browse projects and tasks
  • View tracked time summaries
  • Manage your TimeCamp workspace

Setup

Claude Desktop

Claude MCP Server setup

  1. Open Claude Desktop and go to SettingsConnectorsCustomize
  2. Click the + icon → Add custom connector
  3. Enter the following URL:
https://mcp.timecamp.com/mcp
  1. Click Save
  2. Claude will prompt you to authenticate with your TimeCamp account

Claude Code (CLI)

Add the server using the CLI:

claude mcp add timecamp https://mcp.timecamp.com/mcp

ChatGPT

  1. Open chatgpt.com and go to SettingsConnected apps
  2. Click Add connection
  3. Search for "TimeCamp" or enter the server URL manually:
https://mcp.timecamp.com/mcp
  1. Click Connect and authenticate with your TimeCamp account
  2. TimeCamp tools will now be available in your ChatGPT conversations

Cursor IDE

Add the TimeCamp MCP server to your Cursor configuration:

  1. Open Cursor SettingsMCP
  2. Click Add new MCP server
  3. Choose Type: URL and enter:
https://mcp.timecamp.com/mcp

Alternatively, add it directly to your .cursor/mcp.json file:

{
  "mcpServers": {
    "timecamp": {
      "url": "https://mcp.timecamp.com/mcp"
    }
  }
}
  1. Restart Cursor or reload the MCP servers
  2. You'll be prompted to authenticate with your TimeCamp account

Any MCP-compatible client

Server URL:

https://mcp.timecamp.com/mcp

Configuration examples

JSON configuration (commonly used by MCP clients):

{
  "mcpServers": {
    "timecamp": {
      "url": "https://mcp.timecamp.com/mcp"
    }
  }
}

Windsurf:

Add to your Windsurf MCP settings with the URL https://mcp.timecamp.com/mcp.

VS Code (Copilot):

Add to your .vscode/mcp.json:

{
  "servers": {
    "timecamp": {
      "url": "https://mcp.timecamp.com/mcp"
    }
  }
}

Authentication is handled via OAuth. When you first connect, your AI client will redirect you to TimeCamp to authorize access.

On this page