search_wanted
Pack: fbiwanted · Endpoint: https://gateway.pipeworx.io/fbiwanted/mcp
Search the FBI Most Wanted list by name, crime type, or keywords. Returns person UIDs, names, crimes, and descriptions. Use offset/limit to paginate results.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | Search keyword (e.g., a name, crime type, or description). Omit to list all wanted persons. |
page | number | no | Page number for pagination (default 1) |
Example call
Arguments
{
"query": "terrorism"
}
curl
curl -X POST https://gateway.pipeworx.io/fbiwanted/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_wanted","arguments":{"query":"terrorism"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('search_wanted', {
"query": "terrorism"
});
More examples
{
"query": "James",
"page": 1
}
Response shape
Always returns: query, page, total, items
| Field | Type | Description |
|---|---|---|
query | string | null | Search query used (null if omitted) |
page | number | Current page number |
total | number | Total number of wanted persons matching query |
items | array | List of wanted persons |
Full JSON Schema
{
"type": "object",
"properties": {
"query": {
"type": [
"string",
"null"
],
"description": "Search query used (null if omitted)"
},
"page": {
"type": "number",
"description": "Current page number"
},
"total": {
"type": "number",
"description": "Total number of wanted persons matching query"
},
"items": {
"type": "array",
"description": "List of wanted persons",
"items": {
"type": "object",
"properties": {
"uid": {
"type": "string",
"description": "Unique identifier for the person"
},
"title": {
"type": "string",
"description": "Person's name or title"
},
"subjects": {
"type": "array",
"items": {
"type": "string"
},
"description": "Crime subjects/categories"
},
"description": {
"type": [
"string",
"null"
],
"description": "Brief description of the person or crimes"
},
"images": {
"type": "array",
"description": "Available photos",
"items": {
"type": "object",
"properties": {
"original": {
"type": "string",
"description": "URL to original image"
},
"thumb": {
"type": "string",
"description": "URL to thumbnail image"
},
"caption": {
"type": [
"string",
"null"
],
"description": "Image caption if available"
}
},
"required": [
"original",
"thumb"
]
}
},
"url": {
"type": [
"string",
"null"
],
"description": "URL to FBI profile page"
}
},
"required": [
"uid",
"title",
"subjects"
]
}
}
},
"required": [
"query",
"page",
"total",
"items"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"fbiwanted": {
"url": "https://gateway.pipeworx.io/fbiwanted/mcp"
}
}
}
See Getting Started for client-specific install steps.