← zovo.one

INDIVIDUAL MCP TOOL

entry_delete

Delete one logged entry by id and report the project and hours removed.

zovo.onenone authenticationAvailability not checked

LIVE ENDPOINT

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

No auth detected

Connect to this endpoint to inspect the live schema for entry_delete 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 contains a deletion term.

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

.mcp.json

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

Settings → Connectors → Add custom connector

Name: mcp-time-tracker
Remote MCP URL: https://mcp.zovo.one/mcp/timer-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/timer-tracking"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

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

Client-specific MCP configuration

{
  "name": "mcp-time-tracker",
  "transport": "streamable-http",
  "url": "https://mcp.zovo.one/mcp/timer-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_edit — Change one logged entry by id; only the fields you pass move.