← zovo.one

INDIVIDUAL MCP TOOL

job_card_update_status

Move one job card exactly one step: open, in_progress, done, invoiced, archived, stamping the date and an optional note into its history.

zovo.onenone authenticationAvailability not checked

LIVE ENDPOINT

https://mcp.zovo.one/mcp/job-card

No auth detected

Connect to this endpoint to inspect the live schema for job_card_update_status 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-job-card]
url = "https://mcp.zovo.one/mcp/job-card"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "mcp-job-card": {
      "type": "http",
      "url": "https://mcp.zovo.one/mcp/job-card"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: mcp-job-card
Remote MCP URL: https://mcp.zovo.one/mcp/job-card

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-job-card": {
      "url": "https://mcp.zovo.one/mcp/job-card"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

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

Client-specific MCP configuration

{
  "name": "mcp-job-card",
  "transport": "streamable-http",
  "url": "https://mcp.zovo.one/mcp/job-card"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • job_card_create — Open a job card for a job your crew is taking on and return its JC-YYYY-NNNN number: the client, the site, what the job is, the currency and when it is scheduled.
  • job_card_log_labor — Log hours worked on a job card: who did the work, the day, the hours and the hourly rate in whole cents, with a note on what was done.
  • job_card_log_material — Log materials used on a job card: the item, the day it went in, the quantity and the unit cost in whole cents.
  • job_card_list — List job cards newest first: client, site, status, hours logged, and the labor, materials and grand totals in cents.
  • job_card_get — Read one job card in full by JC number or client: every labor entry and every material used, the hours per worker, and the running totals -- labor, materials and grand total -- as integer cents with formatted amounts.
  • job_card_print — Render a job card ready to print and hand to the client: the labor, the materials, the totals and a signature line for client sign-off.
  • job_card_delete — Delete a job card entered by mistake.
  • job_card_summary — Hours and value for a day or a week: the job cards touched, the hours per worker, and the labor, materials and total value, kept per currency.