get_incident

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

Fetch a full AI Incident Database record by numeric incident_id; returns title, date, description, alleged deployer/developer/harmed parties, and all linked news report URLs.

Parameters

NameTypeRequiredDescription
incident_idnumberyesNumeric AIID incident id

Example call

Arguments

{
  "incident_id": 42
}

curl

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":{"incident_id":42}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('get_incident', {
  "incident_id": 42
});

Response shape

FieldTypeDescription
incidentobject
Full JSON Schema
{
  "type": "object",
  "properties": {
    "incident": {
      "type": "object",
      "properties": {
        "incident_id": {
          "type": "number"
        },
        "title": {
          "type": "string"
        },
        "date": {
          "type": "string"
        },
        "description": {
          "type": "string"
        },
        "AllegedDeployerOfAISystem": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "entity_id": {
                "type": "string"
              },
              "name": {
                "type": "string"
              }
            }
          }
        },
        "AllegedDeveloperOfAISystem": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "entity_id": {
                "type": "string"
              },
              "name": {
                "type": "string"
              }
            }
          }
        },
        "AllegedHarmedOrNearlyHarmedParties": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "entity_id": {
                "type": "string"
              },
              "name": {
                "type": "string"
              }
            }
          }
        },
        "reports": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "report_number": {
                "type": "number"
              },
              "title": {
                "type": "string"
              },
              "url": {
                "type": "string"
              },
              "source_domain": {
                "type": "string"
              },
              "date_published": {
                "type": "string"
              },
              "authors": {
                "type": "array",
                "items": {
                  "type": "string"
                }
              },
              "language": {
                "type": "string"
              }
            }
          }
        },
        "editors": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "userId": {
                "type": "string"
              }
            }
          }
        }
      }
    }
  }
}

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 September 17, 2026