Connects Claude to the FBI's public Most Wanted API with zero auth required. You get one tool: fetch full wanted person records by UID, including mugshots, aliases, crimes, last known locations, and tip contact info. Useful when you're building crime data dashboards, security research tools, or any app that needs to cross-reference against federal watchlists. Runs through Pipeworx's gateway infrastructure, so you can either use this standalone or tap into their full catalog of 673+ data sources. Free tier, no API keys to manage, and you can query it conversationally through their ask_pipeworx wrapper instead of calling tools directly.
FBI Wanted MCP — FBI Wanted public API (free, no auth)
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|---|
get_wanted_person | Get full details for an FBI Most Wanted person by UID. Returns photo, aliases, crimes, last known locations, and contact tips. |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"fbiwanted": {
"url": "https://gateway.pipeworx.io/fbiwanted/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Fbiwanted data" })
The gateway picks the right tool and fills the arguments automatically.
MIT