agency_summary

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

Summarized monthly counts of an offense for one agency (by ORI). Returns time-series of victims/incidents/offenders.

Parameters

NameTypeRequiredDescription
oristringyes9-character ORI
offensestringyesOffense slug
fromstringnoYYYY-MM
tostringnoYYYY-MM

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

Response shape

Always returns: ori, offense, from, to, data

FieldTypeDescription
oristring9-character ORI identifier
offensestringOffense slug queried
fromstringStart date in YYYY-MM format
tostringEnd date in YYYY-MM format
dataobjectRaw FBI CDE agency summary with victims/incidents/offenders time-series
Full JSON Schema
{
  "type": "object",
  "properties": {
    "ori": {
      "type": "string",
      "description": "9-character ORI identifier"
    },
    "offense": {
      "type": "string",
      "description": "Offense slug queried"
    },
    "from": {
      "type": "string",
      "description": "Start date in YYYY-MM format"
    },
    "to": {
      "type": "string",
      "description": "End date in YYYY-MM format"
    },
    "data": {
      "type": "object",
      "description": "Raw FBI CDE agency summary with victims/incidents/offenders time-series"
    }
  },
  "required": [
    "ori",
    "offense",
    "from",
    "to",
    "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