LIVE ENDPOINT
https://mcp.zovo.one/mcp/checklist
Connect to this endpoint to inspect the live schema for checklist_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
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-checklist]
url = "https://mcp.zovo.one/mcp/checklist"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"mcp-checklist": {
"type": "http",
"url": "https://mcp.zovo.one/mcp/checklist"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: mcp-checklist
Remote MCP URL: https://mcp.zovo.one/mcp/checklist
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-checklist": {
"url": "https://mcp.zovo.one/mcp/checklist"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"mcp-checklist": {
"type": "http",
"url": "https://mcp.zovo.one/mcp/checklist"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "mcp-checklist",
"transport": "streamable-http",
"url": "https://mcp.zovo.one/mcp/checklist"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
checklist_create— Create a reusable checklist and return its CL-NNNN id: a name, a category and an optional description.checklist_item_add— Add one step to a checklist and return its I01-style id: the text, an optional section heading, and whether it is required.checklist_item_remove— Remove one step from a checklist by its I01-style id and bump the checklist version.checklist_show— One checklist with its steps in order, grouped by section, plus how many are required and how many runs have been started from it.checklist_list— Every checklist with its category, version, step count and how many runs came from it.run_start— Start a dated run of a checklist and return its RUN-YYYY-NNNN id.run_check— Mark one step pass, fail or na, with who did it and when.run_show— The whole run: every step with its answer, who answered it and when, grouped by section, plus the pass, fail and outstanding counts, the failures in full, and whether it can be signed off and why not.