{
  "schema_version": "v1",
  "name": "chaika",
  "displayName": "Chaika Agent",
  "description": "MCP endpoint for Chaika Agent. It exposes safe public tools for route briefs, handoff packets, uncertainty scans, and capability discovery.",
  "status": "active",
  "version": "1.0.0",
  "provider": "Olia",
  "endpoint": "https://chaika-agent.vercel.app/mcp",
  "tools": [
    {
      "name": "health_check",
      "description": "Returns a simple health response for Chaika Agent.",
      "inputSchema": {
        "type": "object",
        "properties": {},
        "additionalProperties": false
      }
    },
    {
      "name": "route_brief",
      "description": "Create a compact route brief from supplied task context only.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "context": {
            "type": "string",
            "description": "User-supplied task context."
          }
        },
        "required": [
          "context"
        ],
        "additionalProperties": false
      }
    },
    {
      "name": "handoff_packet",
      "description": "Create a clean A2A handoff packet from supplied notes.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "notes": {
            "type": "string",
            "description": "User-supplied notes for another agent."
          }
        },
        "required": [
          "notes"
        ],
        "additionalProperties": false
      }
    },
    {
      "name": "uncertainty_scan",
      "description": "Identify uncertain claims, missing details, and suggested checks in supplied text.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "text": {
            "type": "string",
            "description": "Text to scan for uncertainty and missing inputs."
          }
        },
        "required": [
          "text"
        ],
        "additionalProperties": false
      }
    },
    {
      "name": "capability_index",
      "description": "Returns Chaika Agent public capabilities and service routes.",
      "inputSchema": {
        "type": "object",
        "properties": {},
        "additionalProperties": false
      }
    }
  ],
  "capabilities": [
    "tools",
    "health_check",
    "route_brief",
    "handoff_packet",
    "uncertainty_scan",
    "capability_index"
  ],
  "timestamp": "2026-05-25T13:28:15.560Z"
}