most_wanted
Pack: fbi-wanted · Endpoint: https://gateway.pipeworx.io/fbi-wanted/mcp
The FBI’s Ten Most Wanted Fugitives. Returns the current top-ten list with reward, warning, and image for each. Keyless, official FBI data.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
page_size | number | no | How many to return (default 10, max 20). |
Example call
Arguments
{
"page_size": 10
}
curl
curl -X POST https://gateway.pipeworx.io/fbi-wanted/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"most_wanted","arguments":{"page_size":10}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('most_wanted', {
"page_size": 10
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"fbi-wanted": {
"url": "https://gateway.pipeworx.io/fbi-wanted/mcp"
}
}
}
See Getting Started for client-specific install steps.