list_offense_slugs

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

List the offense slugs accepted by national_estimate / state_summary / agency_summary. Returns a static list.

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

Response shape

Always returns: offenses, count

FieldTypeDescription
offensesarrayValid offense slugs
countnumberNumber of offense slugs
Full JSON Schema
{
  "type": "object",
  "properties": {
    "offenses": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Valid offense slugs"
    },
    "count": {
      "type": "number",
      "description": "Number of offense slugs"
    }
  },
  "required": [
    "offenses",
    "count"
  ]
}

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