get_agency
Pack: fbi-crime · Endpoint: https://gateway.pipeworx.io/fbi-crime/mcp
Fetch a single agency record by ORI.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
ori | string | yes | 9-character ORI (e.g., “CA0194200” = LAPD) |
Example call
curl -X POST https://gateway.pipeworx.io/fbi-crime/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_agency","arguments":{}}}'
Response shape
Always returns: ori, data
| Field | Type | Description |
|---|---|---|
ori | string | 9-character ORI identifier |
data | object | Raw FBI CDE agency record |
Full JSON Schema
{
"type": "object",
"properties": {
"ori": {
"type": "string",
"description": "9-character ORI identifier"
},
"data": {
"type": "object",
"description": "Raw FBI CDE agency record"
}
},
"required": [
"ori",
"data"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"fbi-crime": {
"url": "https://gateway.pipeworx.io/fbi-crime/mcp"
}
}
}
See Getting Started for client-specific install steps.