state_summary

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

Summarized monthly counts of an offense in a state. Returns time-series and totals.

Parameters

NameTypeRequiredDescription
state_abbrstringyes2-letter state code
offensestringyesOffense slug
fromstringnoStart month: MM-YYYY, YYYY-MM, or YYYY (default 5 years ago)
tostringnoEnd month: MM-YYYY, YYYY-MM, or YYYY (default current)

Example call

Arguments

{
  "state_abbr": "NY",
  "offense": "burglary"
}

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":"state_summary","arguments":{"state_abbr":"NY","offense":"burglary"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('state_summary', {
  "state_abbr": "NY",
  "offense": "burglary"
});

More examples

{
  "state_abbr": "TX",
  "offense": "robbery",
  "from": "2022-01",
  "to": "2024-12"
}

Response shape

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

FieldTypeDescription
statestring2-letter state code
offensestringOffense slug queried
fromstringStart date in YYYY-MM format
tostringEnd date in YYYY-MM format
dataobjectRaw FBI CDE state summary time-series and totals
Full JSON Schema
{
  "type": "object",
  "properties": {
    "state": {
      "type": "string",
      "description": "2-letter state code"
    },
    "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 state summary time-series and totals"
    }
  },
  "required": [
    "state",
    "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 July 6, 2026