Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

MCP server for SolidTime — the open-source time tracking app. Enables start/stop timers, manage time entries, projects, clients, tags, and tasks directly from MCP-compatible clients.

README.md

solidtime-mcp-server

![CI](https://github.com/SwamiRama/solidtime-mcp-server/actions/workflows/ci.yml) ![License: MIT](https://opensource.org/licenses/MIT) ![npm](https://www.npmjs.com/package/solidtime-mcp-server)

MCP server for SolidTime — the open-source time tracking app. Start/stop timers, manage time entries, projects, clients, tags, and tasks directly from Claude, Cursor, or any MCP-compatible client.

Features

  • 22 tools covering time entries, projects, clients, tags, tasks, and user info
  • Start/stop timers with automatic active-timer detection
  • Aggregated reports grouped by day, week, project, client, and more
  • Auto member_id resolution — no manual configuration needed
  • Actionable error messages — every error tells you what to do next
  • Zero external dependencies beyond the MCP SDK (uses native fetch)
  • Works with self-hosted SolidTime instances and the hosted version

Quick Start

Using npx (no install)

npx solidtime-mcp-server

Install globally

npm install -g solidtime-mcp-server

Environment Variables

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | SOLIDTIME_API_TOKEN | Yes | — | Your SolidTime API token | | SOLIDTIME_ORGANIZATION_ID | Yes | — | Your organization UUID | | SOLIDTIME_API_URL | No | https://app.solidtime.io | Base URL for self-hosted instances |

Get your API token from SolidTime > Settings > API.

Claude Desktop Configuration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "solidtime": {
      "command": "npx",
      "args": ["-y", "solidtime-mcp-server"],
      "env": {
        "SOLIDTIME_API_TOKEN": "your-token-here",
        "SOLIDTIME_ORGANIZATION_ID": "your-org-uuid-here",
        "SOLIDTIME_API_URL": "https://your-instance.example.com"
      }
    }
  }
}

Claude Code Configuration

Add to your .mcp.json:

{
  "mcpServers": {
    "solidtime": {
      "command": "npx",
      "args": ["-y", "solidtime-mcp-server"],
      "env": {
        "SOLIDTIME_API_TOKEN": "your-token-here",
        "SOLIDTIME_ORGANIZATION_ID": "your-org-uuid-here",
        "SOLIDTIME_API_URL": "https://your-instance.example.com"
      }
    }
  }
}

Tools

Time Entries (8 tools)

| Tool | Description | |------|-------------| | solidtime_start_timer | Start a running timer (checks for existing active timer first) | | solidtime_stop_timer | Stop the active timer | | solidtime_get_active_timer | Get the currently running timer | | solidtime_list_time_entries | List entries with filters (date range, project, client, tags, billable) | | solidtime_create_time_entry | Create a completed entry with start and end times | | solidtime_update_time_entry | Update any field on an existing entry | | solidtime_delete_time_entry | Permanently delete an entry | | solidtime_get_time_entry_report | Aggregated report by day/week/month/project/client/etc. |

Projects (4 tools)

| Tool | Description | |------|-------------| | solidtime_list_projects | List all projects (filter by archived status) | | solidtime_create_project | Create a project with name, color, billable rate | | solidtime_update_project | Update project fields | | solidtime_delete_project | Permanently delete a project |

Clients (3 tools)

| Tool | Description | |------|-------------| | solidtime_list_clients | List all clients (filter by archived status) | | solidtime_create_client | Create a client | | solidtime_update_client | Update a client's name |

Tags (3 tools)

| Tool | Description | |------|-------------| | solidtime_list_tags | List all tags | | solidtime_create_tag | Create a tag | | solidtime_update_tag | Update a tag's name |

Tasks (3 tools)

| Tool | Description | |------|-------------| | solidtime_list_tasks | List tasks (filter by project, done status) | | solidtime_create_task | Create a task within a project | | solidtime_update_task | Update task name, done status, or estimated time |

Users (1 tool)

| Tool | Description | |------|-------------| | solidtime_get_current_user | Get your user profile and resolved member ID |

Usage Examples

Start tracking time: > "Start a timer for the website redesign project"

Log completed work: > "Create a time entry for today 9:00-11:30 on the API project, tagged as development"

Get a weekly report: > "Show me a report of this week's hours grouped by project"

Check what's running: > "Is there a timer running?"

Troubleshooting

"Authentication failed"

Your SOLIDTIME_API_TOKEN is invalid or expired. Generate a new one in SolidTime under Settings > API.

"Permission denied"

Your token doesn't have access to the specified organization. Verify SOLIDTIME_ORGANIZATION_ID.

"Cannot reach SolidTime"

Check that SOLIDTIME_API_URL is correct and the instance is accessible. For self-hosted: ensure the URL includes the protocol (e.g., https://solidtime.example.com).

"Could not find member for user"

The authenticated user is not a member of the specified organization. Check SOLIDTIME_ORGANIZATION_ID.

Development

git clone https://github.com/SwamiRama/solidtime-mcp-server.git
cd solidtime-mcp-server
npm install
npm run dev          # Run with tsx (dev mode)
npm run build        # Compile TypeScript
npm run lint         # ESLint
npm run typecheck    # Type checking
npm run inspector    # Test with MCP Inspector

License

MIT

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Productivity servers.