INDIVIDUAL MCP TOOL
work_order_get
Return one work order in full by WO number or client: the site, every parts and labour line with the unit billed, hours, materials, net and VAT, and the status history.
LIVE ENDPOINT
https://mcp.zovo.one/mcp/service-report
Connect to this endpoint to inspect the live schema for work_order_get 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-work-order]
url = "https://mcp.zovo.one/mcp/service-report"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"mcp-work-order": {
"type": "http",
"url": "https://mcp.zovo.one/mcp/service-report"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: mcp-work-order
Remote MCP URL: https://mcp.zovo.one/mcp/service-report
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-work-order": {
"url": "https://mcp.zovo.one/mcp/service-report"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"mcp-work-order": {
"type": "http",
"url": "https://mcp.zovo.one/mcp/service-report"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "mcp-work-order",
"transport": "streamable-http",
"url": "https://mcp.zovo.one/mcp/service-report"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
work_order_create— Raise a job order and return its WO-YYYY-NNNN number: the client, the site address, the date it was asked for, what the job is and how urgent.work_order_add_line— Add one line: parts with quantity, unit_cost_minor in whole MINOR units and optional markup, or labour with hours and rate_minor.work_order_status— Move one work order exactly one step: draft, scheduled, in_progress, done, invoiced, stamping date and note.work_order_list— List work orders newest requested first: status, priority, client, site, hours, labour, materials and net value, with totals per currency.work_order_delete— Delete a DRAFT work order with no lines, freeing an open slot.completion_report_text— Turn a work order into a plain-text completion report: what was done, the labour hours, the materials, the totals and a sign-off block, ready to paste into an email.completion_report_pdf— Call this tool to render the A4 completion report of one work order and return a download link valid for one hour: the lines, the hours, the materials, the totals and the sign-off block.work_order_invoice_payload— Build an invoice_create-ready payload from the lines, with VAT at the shared profile rate.