get_incident

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

Fetch full incident record with linked reports.

Parameters

NameTypeRequiredDescription
incident_idnumberyesNumeric 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

FieldTypeDescription
incident_idnumberUnique incident identifier
titlestringIncident title
datestringIncident date
descriptionstringFull incident description
editors_notesstringEditorial notes
AllegedDeployerOfAISystemarrayOrganizations that deployed the AI system
AllegedDeveloperOfAISystemarrayOrganizations that developed the AI system
AllegedHarmedOrNearlyHarmedPartiesarrayParties harmed or nearly harmed
reportsarrayLinked news reports and sources
editorsarrayEditors 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.

Regenerated from source · build May 21, 2026