list_taxonomies
Pack: ai-incident-db · Endpoint: https://gateway.pipeworx.io/ai-incident-db/mcp
Taxonomies used to classify incidents (CSET-AIID, GMF, RAIC).
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_taxonomies","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
taxas | array | Available taxonomies for incident classification |
Full JSON Schema
{
"type": "object",
"properties": {
"taxas": {
"type": "array",
"items": {
"type": "object",
"properties": {
"namespace": {
"type": "string",
"description": "Taxonomy namespace (e.g., CSET-AIID, GMF, RAIC)"
},
"description": {
"type": "string",
"description": "Taxonomy description"
},
"weight": {
"type": "number",
"description": "Taxonomy weight or priority"
}
}
},
"description": "Available taxonomies for incident classification"
}
}
}
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.