authenticate
Verify user identity by submitting a username and password to access FamilySearch's family history data and related features via the MCP server.
Instructions
Authenticate with FamilySearch
Input Schema
Name | Required | Description | Default |
---|---|---|---|
password | Yes | Your FamilySearch password | |
username | Yes | Your FamilySearch username |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"password": {
"description": "Your FamilySearch password",
"type": "string"
},
"username": {
"description": "Your FamilySearch username",
"type": "string"
}
},
"required": [
"username",
"password"
],
"type": "object"
}