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

NameTypeRequiredDescription
uidstringyesThe 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

FieldTypeDescription
uidstringUnique identifier for the person
titlestringPerson’s name or title
subjectsarrayCrime subjects/categories
descriptionstring | nullGeneral description of person or crimes
detailsstring | nullDetailed information about the case
cautionstring | nullSafety warnings or cautions
statusstring | nullCurrent status of the case
reward_textstring | nullReward information if applicable
aliasesarrayKnown aliases or alternate names
nationalitystring | nullPerson’s nationality
place_of_birthstring | nullKnown place of birth
dates_of_birth_usedarrayKnown dates of birth
physicalobject
occupationsarrayKnown occupations
languagesarrayKnown languages spoken
field_officesarrayFBI field offices handling the case
locationsarrayLast known locations
imagesarrayPhotos of the person
filesarrayAssociated documents or files
urlstring | nullURL to FBI profile page
publicationstring | nullPublication date
modifiedstring | nullLast 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.

Regenerated from source · build May 9, 2026