list_agencies

Pack: fbi-crime · Endpoint: https://gateway.pipeworx.io/fbi-crime/mcp

List reporting agencies (police departments / sheriffs) for a state. Returns ORI (Originating Reporting Identifier) — the canonical agency ID required by the other tools.

Parameters

NameTypeRequiredDescription
state_abbrstringno2-letter state code (e.g., “CA”). Omit to list all.

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":"list_agencies","arguments":{}}}'

Response shape

Always returns: state, data

FieldTypeDescription
statestring | null2-letter state code if filtered, null if listing all agencies
dataobjectRaw FBI CDE agencies response
Full JSON Schema
{
  "type": "object",
  "properties": {
    "state": {
      "type": [
        "string",
        "null"
      ],
      "description": "2-letter state code if filtered, null if listing all agencies"
    },
    "data": {
      "type": "object",
      "description": "Raw FBI CDE agencies response"
    }
  },
  "required": [
    "state",
    "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.

Regenerated from source · build May 21, 2026