get_wanted
Pack: fbi-wanted · Endpoint: https://gateway.pipeworx.io/fbi-wanted/mcp
Get the full FBI Wanted profile for one person by uid — physical description, aliases, occupations, caution/remarks/details (plain text), reward, field offices, and images. Keyless, official FBI data.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
uid | string | yes | The wanted-person uid (from search_wanted / most_wanted results). |
Example call
Arguments
{
"uid": "1234567"
}
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":"get_wanted","arguments":{"uid":"1234567"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_wanted', {
"uid": "1234567"
});
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.