Welcome to the New BigPanda API Documentation
description and whenToSelect fields, giving external agents enough context to choose the right tool autonomously.🚧 Authentication All BigPanda APIs require Bearer Token Authorization in the call headers. This API uses the User API Key type of Authorization token.
❗ Rate limitations To maintain quality of service, the Biggy API is limited to 100 requests per minute. Additional requests will return a 429 response code and the request will need to be retried.
/mcp endpoint handles the full MCP lifecycle over standard HTTP POST. Each request is a JSON-RPC 2.0 message. The method field determines the operation (initialize, tools/list, tools/call).405 Method Not Allowed (stateless mode does not use sessions or server-sent event (SSE) streams)./mcp endpoint.{
"jsonrpc": "2.0",
"id": 1,
"result": {
"protocolVersion": "2025-11-25",
"capabilities": { "tools": {}, "logging": {} },
"serverInfo": { "name": "biggy-action-plans", "version": "1.0.0" }
}
}{
"jsonrpc": "2.0",
"id": 2,
"result": {
"tools": [
{
"name": "TroubleshootHistoricalAnalysis",
"title": "Troubleshoot",
"description": "Troubleshoots an issue by analyzing historical data...\n\nWhen to select:\nUser asks about past incidents, alerts, or historical patterns.",
"inputSchema": {
"type": "object",
"properties": {
"query": { "type": "string", "description": "The user query to run against this action plan." },
"responseFormat": { "type": "string", "enum": ["markdown", "plain-text"] },
"reasoningEffort": { "type": "string", "enum": ["low", "medium", "high"] }
},
"required": ["query"]
},
"_meta": { "isCustom": false }
}
]
}
}| Field | Type | Required | Description |
|---|---|---|---|
query | string | Yes | The natural-language query to run against the action plan |
responseFormat | string | No | "markdown" (default) or "plain-text" |
reasoningEffort | string | No | Reasoning level: "low", "medium", or "high" |
{
"jsonrpc": "2.0",
"id": 3,
"result": {
"content": [
{
"type": "text",
"text": "Based on the historical data..."
}
]
}
}{
"mcpServers": {
"biggy": {
"url": "https://api.biggy.io/mcp",
"headers": {
"Authorization": "Bearer your-api-key"
}
}
}
}