MCP server for Keepsake — the personal CRM that helps you nurture your relationships. Connect your AI assistant (Claude, Cursor, or any MCP-compatible client) to your Keepsake data: contacts, interactions, tasks, notes, daily journal, companies, and tags. Your AI assistant becomes a personal relationship manager. Ask it to: - "Who did I last talk to at Acme Corp?" - "Add a note that I ran into Sar
Add this skill
npx mdskills install nicolascroce/keepsake-mcpComprehensive personal CRM integration with 42 well-documented tools across all major data types
MCP server for Keepsake — the personal CRM that helps you nurture your relationships.
Connect your AI assistant (Claude, Cursor, or any MCP-compatible client) to your Keepsake data: contacts, interactions, tasks, notes, daily journal, companies, and tags.
Your AI assistant becomes a personal relationship manager. Ask it to:
Sign up at keepsake.place, then go to Account > API Keys to generate one.
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"keepsake": {
"command": "npx",
"args": ["-y", "keepsake-mcp"],
"env": {
"KEEPSAKE_API_KEY": "ksk_YOUR_API_KEY"
}
}
}
}
claude mcp add keepsake -- npx -y keepsake-mcp
Then set KEEPSAKE_API_KEY in your environment.
Add to .cursor/mcp.json in your project:
{
"mcpServers": {
"keepsake": {
"command": "npx",
"args": ["-y", "keepsake-mcp"],
"env": {
"KEEPSAKE_API_KEY": "ksk_YOUR_API_KEY"
}
}
}
}
| Tool | Description |
|---|---|
list_contacts | List all contacts with pagination and sorting |
get_contact | Get a contact with recent interactions, tags, and stats |
create_contact | Create a new contact |
update_contact | Update contact fields |
delete_contact | Permanently delete a contact |
search_contacts | Accent-insensitive search by name, email, company |
get_contact_timeline | Unified chronological feed of all items for a contact |
| Tool | Description |
|---|---|
list_companies | List all companies |
get_company | Get company with linked contacts and tags |
create_company | Create a new company |
update_company | Update company fields |
delete_company | Soft-delete (or permanent delete) a company |
search_companies | Accent-insensitive company search |
| Tool | Description |
|---|---|
list_entries | List interactions (calls, emails, meetings, etc.) |
create_entry | Log a new interaction — supports #tag# and [[tag]] syntax |
update_entry | Update an interaction |
delete_entry | Delete an interaction |
| Tool | Description |
|---|---|
list_tasks | List tasks with status/date filters |
create_task | Create a task — supports #tag# and [[tag]] syntax |
update_task | Update task fields |
delete_task | Delete a task |
complete_task | Mark as completed (auto-creates next occurrence for recurring tasks) |
uncomplete_task | Mark as pending again |
snooze_task | Reschedule to a new date |
get_tasks_today | Today's tasks: overdue + due today + ASAP |
get_tasks_overdue | Only overdue tasks |
| Tool | Description |
|---|---|
list_notes | List notes (filter by pinned/archived) |
create_note | Create a note — supports #tag# and [[tag]] syntax |
update_note | Update note content |
delete_note | Soft-delete (or permanent) |
pin_note | Pin to top |
archive_note | Archive a note |
restore_note | Restore a deleted/archived note |
| Tool | Description |
|---|---|
list_days | List journal entries by date range |
get_day | Get a specific day's journal |
update_day | Create or update a day's journal (upsert) |
| Tool | Description |
|---|---|
list_tags | List all tags |
get_tag_items | Get everything linked to a tag |
link_tag | Link any entity to a tag |
unlink_tag | Remove a tag link |
| Tool | Description |
|---|---|
search | Global search across all data types |
get_changelog | Items modified since a timestamp (for sync) |
get_agent_instructions | Best practices for AI agents |
All tools include MCP safety annotations:
list_*, get_*, search_*): marked readOnlyHint: truedestructiveHint: falsedestructiveHint: false, idempotentHint: truedestructiveHint: true, idempotentHint: true| Variable | Required | Description |
|---|---|---|
KEEPSAKE_API_KEY | Yes | Your API key (starts with ksk_) |
KEEPSAKE_API_URL | No | Custom API URL (default: https://app.keepsake.place/api/v1) |
60 requests per minute per API key. Rate limit headers are included in responses.
Full REST API docs: keepsake.place/api
Keepsake MCP server only communicates with the Keepsake API (app.keepsake.place). It does not send data to any third-party service. Your data stays between your MCP client and your Keepsake account.
All API calls are authenticated with your personal API key and scoped to your account via Row Level Security. No other user's data is accessible.
See our privacy policy at keepsake.place/privacy.
MIT
Install via CLI
npx mdskills install nicolascroce/keepsake-mcpKeepsake MCP is a free, open-source AI agent skill. MCP server for Keepsake — the personal CRM that helps you nurture your relationships. Connect your AI assistant (Claude, Cursor, or any MCP-compatible client) to your Keepsake data: contacts, interactions, tasks, notes, daily journal, companies, and tags. Your AI assistant becomes a personal relationship manager. Ask it to: - "Who did I last talk to at Acme Corp?" - "Add a note that I ran into Sar
Install Keepsake MCP with a single command:
npx mdskills install nicolascroce/keepsake-mcpThis downloads the skill files into your project and your AI agent picks them up automatically.
Keepsake MCP works with Claude Code, Claude Desktop, Cursor, Vscode Copilot, Windsurf, Continue Dev, Gemini Cli, Amp, Roo Code, Goose. Skills use the open SKILL.md format which is compatible with any AI coding agent that reads markdown instructions.