get_agency
Pack: fbi-crime · Endpoint: https://gateway.pipeworx.io/fbi-crime/mcp
Fetch a single agency record by ORI. Resolved by listing the agencies for the ORI’s state and filtering — the dedicated by-ORI endpoint was retired mid-2026.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
ori | string | yes | 9-character ORI (e.g., “CA0194200” = LAPD). First two chars are the state code. |
Example call
Arguments
{
"ori": "CA0194200"
}
curl
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":{"ori":"CA0194200"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_agency', {
"ori": "CA0194200"
});
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.