list_recent
Pack: ai-incident-db · Endpoint: https://gateway.pipeworx.io/ai-incident-db/mcp
Most recently added incidents.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
limit | number | no | 1-50 (default 10) |
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":"list_recent","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
incidents | array | Most recently added 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"
},
"description": {
"type": "string",
"description": "Short incident description"
}
}
},
"description": "Most recently added 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.