get-descendants
Retrieve descendants of a person by specifying their ID and number of generations using FamilySearch MCP Server for family history data analysis.
Instructions
Get descendants of a specific person
Input Schema
Name | Required | Description | Default |
---|---|---|---|
generations | No | Number of generations (default: 2, max: 3) | |
personId | Yes | Person ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"generations": {
"description": "Number of generations (default: 2, max: 3)",
"type": "number"
},
"personId": {
"description": "Person ID",
"type": "string"
}
},
"required": [
"personId"
],
"type": "object"
}