get_wanted_person
Pack: fbiwanted · Endpoint: https://gateway.pipeworx.io/fbiwanted/mcp
Get full details for an FBI Most Wanted person by UID. Returns photo, aliases, crimes, last known locations, and contact tips.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
uid | string | yes | The unique identifier (UID) of the wanted person |
Example call
Arguments
{
"uid": "w-1234"
}
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":"get_wanted_person","arguments":{"uid":"w-1234"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_wanted_person', {
"uid": "w-1234"
});
Response shape
Always returns: uid, title, subjects, physical, occupations, languages, field_offices, locations, images, files
| Field | Type | Description |
|---|---|---|
uid | string | Unique identifier for the person |
title | string | Person’s name or title |
subjects | array | Crime subjects/categories |
description | string | null | General description of person or crimes |
details | string | null | Detailed information about the case |
caution | string | null | Safety warnings or cautions |
status | string | null | Current status of the case |
reward_text | string | null | Reward information if applicable |
aliases | array | Known aliases or alternate names |
nationality | string | null | Person’s nationality |
place_of_birth | string | null | Known place of birth |
dates_of_birth_used | array | Known dates of birth |
physical | object | |
occupations | array | Known occupations |
languages | array | Known languages spoken |
field_offices | array | FBI field offices handling the case |
locations | array | Last known locations |
images | array | Photos of the person |
files | array | Associated documents or files |
url | string | null | URL to FBI profile page |
publication | string | null | Publication date |
modified | string | null | Last modified date |
Full JSON Schema
{
"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": "General description of person or crimes"
},
"details": {
"type": [
"string",
"null"
],
"description": "Detailed information about the case"
},
"caution": {
"type": [
"string",
"null"
],
"description": "Safety warnings or cautions"
},
"status": {
"type": [
"string",
"null"
],
"description": "Current status of the case"
},
"reward_text": {
"type": [
"string",
"null"
],
"description": "Reward information if applicable"
},
"aliases": {
"type": "array",
"items": {
"type": "string"
},
"description": "Known aliases or alternate names"
},
"nationality": {
"type": [
"string",
"null"
],
"description": "Person's nationality"
},
"place_of_birth": {
"type": [
"string",
"null"
],
"description": "Known place of birth"
},
"dates_of_birth_used": {
"type": "array",
"items": {
"type": "string"
},
"description": "Known dates of birth"
},
"physical": {
"type": "object",
"properties": {
"sex": {
"type": [
"string",
"null"
],
"description": "Biological sex"
},
"race": {
"type": [
"string",
"null"
],
"description": "Race/ethnicity"
},
"eyes": {
"type": [
"string",
"null"
],
"description": "Eye color"
},
"hair": {
"type": [
"string",
"null"
],
"description": "Hair color"
},
"height_min": {
"type": [
"number",
"null"
],
"description": "Minimum known height"
},
"height_max": {
"type": [
"number",
"null"
],
"description": "Maximum known height"
},
"weight_min": {
"type": [
"number",
"null"
],
"description": "Minimum known weight"
},
"weight_max": {
"type": [
"number",
"null"
],
"description": "Maximum known weight"
},
"scars_and_marks": {
"type": [
"string",
"null"
],
"description": "Distinguishing scars or marks"
}
},
"required": [
"sex",
"race",
"eyes",
"hair",
"height_min",
"height_max",
"weight_min",
"weight_max",
"scars_and_marks"
]
},
"occupations": {
"type": "array",
"items": {
"type": "string"
},
"description": "Known occupations"
},
"languages": {
"type": "array",
"items": {
"type": "string"
},
"description": "Known languages spoken"
},
"field_offices": {
"type": "array",
"items": {
"type": "string"
},
"description": "FBI field offices handling the case"
},
"locations": {
"type": "array",
"items": {
"type": "string"
},
"description": "Last known locations"
},
"images": {
"type": "array",
"description": "Photos of the person",
"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"
]
}
},
"files": {
"type": "array",
"description": "Associated documents or files",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "File name"
},
"url": {
"type": "string",
"description": "File URL"
}
},
"required": [
"name",
"url"
]
}
},
"url": {
"type": [
"string",
"null"
],
"description": "URL to FBI profile page"
},
"publication": {
"type": [
"string",
"null"
],
"description": "Publication date"
},
"modified": {
"type": [
"string",
"null"
],
"description": "Last modified date"
}
},
"required": [
"uid",
"title",
"subjects",
"physical",
"occupations",
"languages",
"field_offices",
"locations",
"images",
"files"
]
}
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.