get_incident
Pack: ai-incident-db · Endpoint: https://gateway.pipeworx.io/ai-incident-db/mcp
Fetch full incident record with linked reports.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
incident_id | number | yes | Numeric AIID incident id |
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":"get_incident","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
incident_id | number | Unique incident identifier |
title | string | Incident title |
date | string | Incident date |
description | string | Full incident description |
editors_notes | string | Editorial notes |
AllegedDeployerOfAISystem | array | Organizations that deployed the AI system |
AllegedDeveloperOfAISystem | array | Organizations that developed the AI system |
AllegedHarmedOrNearlyHarmedParties | array | Parties harmed or nearly harmed |
reports | array | Linked news reports and sources |
editors | array | Editors who contributed to this incident record |
Full JSON Schema
{
"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": "Full incident description"
},
"editors_notes": {
"type": "string",
"description": "Editorial notes"
},
"AllegedDeployerOfAISystem": {
"type": "array",
"items": {
"type": "string"
},
"description": "Organizations that deployed the AI system"
},
"AllegedDeveloperOfAISystem": {
"type": "array",
"items": {
"type": "string"
},
"description": "Organizations that developed the AI system"
},
"AllegedHarmedOrNearlyHarmedParties": {
"type": "array",
"items": {
"type": "string"
},
"description": "Parties harmed or nearly harmed"
},
"reports": {
"type": "array",
"items": {
"type": "object",
"properties": {
"report_number": {
"type": "number",
"description": "Report identifier"
},
"title": {
"type": "string",
"description": "Report title"
},
"url": {
"type": "string",
"description": "URL to the report"
},
"source_domain": {
"type": "string",
"description": "Domain of the report source"
},
"date_published": {
"type": "string",
"description": "Publication date"
},
"authors": {
"type": "array",
"items": {
"type": "string"
},
"description": "Report authors"
},
"language": {
"type": "string",
"description": "Language code of the report"
}
}
},
"description": "Linked news reports and sources"
},
"editors": {
"type": "array",
"items": {
"type": "object",
"properties": {
"userId": {
"type": "string",
"description": "Editor user identifier"
}
}
},
"description": "Editors who contributed to this incident record"
}
}
}
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.