← zovo.one

INDIVIDUAL MCP TOOL

task_delete

Delete one task by id, permanently; the id is never reused.

zovo.onenone authenticationAvailability not checked

LIVE ENDPOINT

https://mcp.zovo.one/mcp/study-flashcards-exam-prep

No auth detected

Connect to this endpoint to inspect the live schema for task_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-kanban]
url = "https://mcp.zovo.one/mcp/study-flashcards-exam-prep"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "mcp-kanban": {
      "type": "http",
      "url": "https://mcp.zovo.one/mcp/study-flashcards-exam-prep"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: mcp-kanban
Remote MCP URL: https://mcp.zovo.one/mcp/study-flashcards-exam-prep

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-kanban": {
      "url": "https://mcp.zovo.one/mcp/study-flashcards-exam-prep"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "mcp-kanban": {
      "type": "http",
      "url": "https://mcp.zovo.one/mcp/study-flashcards-exam-prep"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "mcp-kanban",
  "transport": "streamable-http",
  "url": "https://mcp.zovo.one/mcp/study-flashcards-exam-prep"
}
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.
  • task_add — Add one task to a board and return its id, board and column.
  • task_list — List tasks as a table of id, project, column, title, priority, due, estimate, actual and tags, sorted by due date, with the total estimate.
  • task_move — Move one task to another column of its own board and report the old and new column.
  • task_update — Change a task by id: only the fields you pass are touched.
  • task_done — Mark one task finished: it moves to the board's done column (named done, else the last) and is stamped, leaving task_list and the open counts.
  • task_search — Find tasks whose id, title, notes or tags contain the query, across every board, finished ones included.