INDIVIDUAL MCP TOOL
invoice_summary
Turn tracked billable time into invoice lines for one project: hours, hourly rate, amount per task and the total, one line per rate so two rates never average.
LIVE ENDPOINT
https://mcp.zovo.one/mcp/pomodoro-timer
Connect to this endpoint to inspect the live schema for invoice_summary and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Potential side effects detected · medium confidence · heuristic, not a guarantee.
- A tool name or description suggests a financial action.
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/pomodoro-timer"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"mcp-time-tracker": {
"type": "http",
"url": "https://mcp.zovo.one/mcp/pomodoro-timer"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: mcp-time-tracker
Remote MCP URL: https://mcp.zovo.one/mcp/pomodoro-timer
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/pomodoro-timer"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"mcp-time-tracker": {
"type": "http",
"url": "https://mcp.zovo.one/mcp/pomodoro-timer"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "mcp-time-tracker",
"transport": "streamable-http",
"url": "https://mcp.zovo.one/mcp/pomodoro-timer"
}
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_start— Start a stopwatch for work on a project and return the start time.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.