{
  "schema_version": "v1",
  "name": "kokyrka-mcp",
  "displayName": "Kokyrka MCP",
  "description": "Public MCP manifest for Kokyrka My Agent. It exposes safe tools for note splitting, small risk tags, status checks, and next-touch notes.",
  "version": "1.0.0",
  "protocolVersion": "2025-06-18",
  "endpoint": "https://kokyrka-my-agent.vercel.app/mcp",
  "transport": "streamable-http",
  "methods": [
    "POST"
  ],
  "capabilities": {
    "tools": true,
    "prompts": false,
    "resources": false
  },
  "tools": [
    {
      "name": "desk_check",
      "description": "Return the public service status for Kokyrka My Agent.",
      "inputSchema": {
        "type": "object",
        "properties": {},
        "additionalProperties": false
      }
    },
    {
      "name": "note_split",
      "description": "Split supplied notes into request, useful detail, missing detail, and next action.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "notes": {
            "type": "string",
            "description": "User-supplied notes to split into practical sections."
          }
        },
        "required": [
          "notes"
        ],
        "additionalProperties": false
      }
    },
    {
      "name": "small_risk_tag",
      "description": "Mark supplied items with simple risk labels: low, watch, or confirm first.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "items": {
            "type": "string",
            "description": "Items or short context to review."
          }
        },
        "required": [
          "items"
        ],
        "additionalProperties": false
      }
    },
    {
      "name": "next_touch",
      "description": "Prepare one short next-touch note from supplied context.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "context": {
            "type": "string",
            "description": "Context for the next-touch note."
          }
        },
        "required": [
          "context"
        ],
        "additionalProperties": false
      }
    }
  ],
  "status": "healthy",
  "health": "https://kokyrka-my-agent.vercel.app/healthz"
}