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
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | Free-text — title / description |
start_date | string | no | YYYY-MM-DD lower bound on incident date |
end_date | string | no | YYYY-MM-DD upper bound |
limit | number | no | 1-200 (default 25) |
offset | number | no | 0-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
| Field | Type | Description |
|---|---|---|
incidents | array | List 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.