search_incidents

Pack: ai-incident-db · Endpoint: https://gateway.pipeworx.io/ai-incident-db/mcp

Search the AI Incident Database. Combines free-text with date range filters. Returns incident IDs, titles, dates, and a short blurb.

Parameters

NameTypeRequiredDescription
querystringnoFree-text — title / description
start_datestringnoYYYY-MM-DD lower bound on incident date
end_datestringnoYYYY-MM-DD upper bound
limitnumberno1-200 (default 25)
offsetnumberno0-based offset

Example call

curl -X POST https://gateway.pipeworx.io/ai-incident-db/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_incidents","arguments":{}}}'

Response shape

FieldTypeDescription
incidentsarrayList of matching incidents
Full JSON Schema
{
  "type": "object",
  "properties": {
    "incidents": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "incident_id": {
            "type": "number",
            "description": "Unique incident identifier"
          },
          "title": {
            "type": "string",
            "description": "Incident title"
          },
          "date": {
            "type": "string",
            "description": "Incident date in YYYY-MM-DD format"
          },
          "description": {
            "type": "string",
            "description": "Short description of the incident"
          },
          "editors_notes": {
            "type": "string",
            "description": "Editorial notes on the incident"
          }
        }
      },
      "description": "List of matching incidents"
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "ai-incident-db": {
      "url": "https://gateway.pipeworx.io/ai-incident-db/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 21, 2026