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
fromstringnoYYYY-MM (default 5 years ago)
tostringnoYYYY-MM (default current)

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

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 May 21, 2026