← zovo.one

INDIVIDUAL MCP TOOL

export_csv

Call this tool to export the timesheet to a CSV file (excel-friendly) you can hand to a bookkeeper: one row per entry with hours, billable, rate, currency and amount.

zovo.onenone authenticationAvailability not checked

LIVE ENDPOINT

https://mcp.zovo.one/mcp/time-tracking

No auth detected

Connect to this endpoint to inspect the live schema for export_csv 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

zovo.one

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/time-tracking"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "mcp-time-tracker": {
      "type": "http",
      "url": "https://mcp.zovo.one/mcp/time-tracking"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: mcp-time-tracker
Remote MCP URL: https://mcp.zovo.one/mcp/time-tracking

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/time-tracking"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "mcp-time-tracker": {
      "type": "http",
      "url": "https://mcp.zovo.one/mcp/time-tracking"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "mcp-time-tracker",
  "transport": "streamable-http",
  "url": "https://mcp.zovo.one/mcp/time-tracking"
}
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.