Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
A Model Context Protocol (MCP) server that connects FamilySearch APIs to AI tools like Claude or Cursor for family history data interaction.
This is a Model Context Protocol (MCP) server for FamilySearch APIs. It allows AI tools like Claude or Cursor to interact with FamilySearch's family history data directly.
npm install
npm run build
Before using this tool, you'll need to register for FamilySearch API access:
https://localhost:8080/oauth-redirect
(you can change this later)Run the server:
npm start
Then, in your AI tool that supports MCP (like Claude or Cursor), you can use the FamilySearch tools to interact with family history data.
The first time you use the MCP, you'll need to configure it with your FamilySearch API credentials:
Configure FamilySearch API credentials with clientId: YOUR_CLIENT_ID_HERE
Then authenticate with your FamilySearch username and password:
Authenticate with FamilySearch using username: your_username and password: your_password
Once authenticated, your credentials will be stored securely in ~/.familysearch-mcp/config.json
for future use.
say-hello
: A simple greeting functionconfigure
: Set up your FamilySearch API credentialsauthenticate
: Log in to FamilySearchget-current-user
: View details about your FamilySearch accountsearch-persons
: Search for individuals in FamilySearch Family Treeget-person
: View detailed information about a specific personget-ancestors
: View a person's ancestors (up to 8 generations)get-descendants
: View a person's descendants (up to 3 generations)search-records
: Search FamilySearch's historical record collectionsSearch for persons with name: "John Smith" birthPlace: "New York"
Get person with personId: ABCD-123
Get ancestors for personId: ABCD-123 with generations: 4
Search records with surname: "Johnson" birthPlace: "England" deathDate: "1880-01-01"
Your FamilySearch credentials are stored locally on your machine in ~/.familysearch-mcp/config.json
. Never share this file with others.
ISC