TimeCamp MCP Server

This is a Model Context Protocol (MCP) server for TimeCamp integration.

To use this server, connect to the /sse endpoint with proper authentication.

Available Tools

This MCP server provides the following tools for TimeCamp integration:

Authentication

Include your TimeCamp API token in the Authorization header:

Authorization: Bearer YOUR_TIMECAMP_TOKEN

Configuration Example

To configure this MCP server in your client application, add the following configuration:

{
  "mcpServers": {
    "timecamp": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://my-mcp-server.timecamp-s-a.workers.dev/sse",
        "--header",
        "Authorization:${AUTH_HEADER}"
      ],
      "env": {
        "AUTH_HEADER": "Bearer <auth-token>"
      }
    }
  }
}

Note: Replace <auth-token> with your actual TimeCamp API token.