← zovo.one
INDIVIDUAL MCP TOOL
timer_start
Start a stopwatch for work on a project and return the start time.
LIVE ENDPOINT
https://mcp.zovo.one/mcp/timesheets
Connect to this endpoint to inspect the live schema for timer_start and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- No write-capable action terms were found; this is not proof that invocation has no side effects.
Parent server
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.mcp-time-tracker]
url = "https://mcp.zovo.one/mcp/timesheets"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"mcp-time-tracker": {
"type": "http",
"url": "https://mcp.zovo.one/mcp/timesheets"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: mcp-time-tracker
Remote MCP URL: https://mcp.zovo.one/mcp/timesheets
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"mcp-time-tracker": {
"url": "https://mcp.zovo.one/mcp/timesheets"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"mcp-time-tracker": {
"type": "http",
"url": "https://mcp.zovo.one/mcp/timesheets"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "mcp-time-tracker",
"transport": "streamable-http",
"url": "https://mcp.zovo.one/mcp/timesheets"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
license_status— Report this endpoint's licence state for your token as JSON: the product, the tier free or pro, why it is not Pro, and the checkout URL.license_activate— Turn Pro on for this connection with key, an MCPL1.timer_stop— Stop the running timer and log it as one entry.timer_status— Report the running timer and today's total hours.entry_add— Log time already worked as one entry and return its id, duration and amount.entry_list— List logged entries as a table of id, day, start, project, task, hours, billable, tags and note, newest first, with total hours.entry_delete— Delete one logged entry by id and report the project and hours removed.entry_edit— Change one logged entry by id; only the fields you pass move.