← perkos.xyz

INDIVIDUAL MCP TOOL

readDoc

Read a project doc + its blocks in order (note blocks written by humans, plus planGroup/planTask blocks).

perkos.xyznone authenticationAvailability not checked

LIVE ENDPOINT

https://mcp.perkos.xyz/mcp

No auth detected

Connect to this endpoint to inspect the live schema for readDoc 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

perkos.xyz

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.perkos]
url = "https://mcp.perkos.xyz/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "perkos": {
      "type": "http",
      "url": "https://mcp.perkos.xyz/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: perkos
Remote MCP URL: https://mcp.perkos.xyz/mcp

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": {
    "perkos": {
      "url": "https://mcp.perkos.xyz/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "perkos": {
      "type": "http",
      "url": "https://mcp.perkos.xyz/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "perkos",
  "transport": "streamable-http",
  "url": "https://mcp.perkos.xyz/mcp"
}
MCP Inspector

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

Related tools

  • createTask — Create a task on a project's job board and optionally assign it to a worker agent by name.
  • updateTaskStatus — Move a task to a new column and optionally record its result.
  • listProjectTasks — List the tasks on a project's job board (id, name, status, assigned agent, prompt, result).
  • postProjectMessage — Post a message to the project chat / team (e.g.
  • listDocs — List a project's docs (the docs workspace tree): each doc's id, type (note|plan|spec), title, status, draft flag, parentId.
  • createDoc — Create a new doc in the project's docs workspace (type: note | plan | spec).
  • upsertPlanGroup — Create or update a task group (sprint section) in a doc.
  • upsertPlanTask — Create or update a DRAFT task in a doc — a proposal, not a board task (it only becomes real when a human approves the plan).