national_estimate

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

National crime rate + count estimates for an offense across a year range. Useful for “how has X crime trended nationally”.

Parameters

NameTypeRequiredDescription
offensestringyesOffense slug (e.g., “violent-crime”, “murder”, “burglary”)
fromnumbernoStart year (default 2020)
tonumbernoEnd year (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":"national_estimate","arguments":{}}}'

Response shape

Always returns: offense, from, to, data

FieldTypeDescription
offensestringOffense slug queried
fromnumberStart year
tonumberEnd year
dataobjectRaw FBI CDE national estimate data
Full JSON Schema
{
  "type": "object",
  "properties": {
    "offense": {
      "type": "string",
      "description": "Offense slug queried"
    },
    "from": {
      "type": "number",
      "description": "Start year"
    },
    "to": {
      "type": "number",
      "description": "End year"
    },
    "data": {
      "type": "object",
      "description": "Raw FBI CDE national estimate data"
    }
  },
  "required": [
    "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