get-person
Retrieve comprehensive details about a specific person using their unique ID from FamilySearch's family history data through the FamilySearch MCP Server.
Instructions
Get detailed information about a specific person
Input Schema
Name | Required | Description | Default |
---|---|---|---|
personId | Yes | Person ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"personId": {
"description": "Person ID",
"type": "string"
}
},
"required": [
"personId"
],
"type": "object"
}