keepsake-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@keepsake-mcpShow me my last interaction with John."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
keepsake-mcp
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.
Why
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 Sarah at the conference"
"What tasks are overdue?"
"Show me everything related to the #house-project tag"
"Create a follow-up task for my meeting with John next week"
Quick start
1. Get your API key
Sign up at keepsake.place, then go to Account > API Keys to generate one.
2. Choose your connection method
Option A: Remote (HTTP) — recommended
No installation required. Works with Claude iOS, Claude web, Claude Desktop Connectors, and any MCP client that supports Streamable HTTP.
Endpoint: https://app.keepsake.place/api/mcp
Authentication: Pass your API key as a Bearer token in the Authorization header.
Claude Desktop (Connectors):
Add a remote MCP server in Claude Desktop settings with:
URL:
https://app.keepsake.place/api/mcpAuthentication: Bearer token with your
ksk_API key
Any MCP client (Streamable HTTP):
{
"mcpServers": {
"keepsake": {
"type": "streamable-http",
"url": "https://app.keepsake.place/api/mcp",
"headers": {
"Authorization": "Bearer ksk_YOUR_API_KEY"
}
}
}
}Option B: Local (stdio)
Runs locally via npx. Useful for Claude Code, Cursor, and local development.
Claude Desktop:
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 Code:
claude mcp add keepsake -- npx -y keepsake-mcpThen set KEEPSAKE_API_KEY in your environment.
Cursor:
Add to .cursor/mcp.json in your project:
{
"mcpServers": {
"keepsake": {
"command": "npx",
"args": ["-y", "keepsake-mcp"],
"env": {
"KEEPSAKE_API_KEY": "ksk_YOUR_API_KEY"
}
}
}
}Available tools (58)
Contacts
Tool | Description |
| List all contacts with pagination and sorting |
| Get a contact with recent interactions, tags, and stats |
| Create a new contact |
| Update contact fields |
| Permanently delete a contact |
| Accent-insensitive search by name, email, company |
| Unified chronological feed of all items for a contact |
Companies
Tool | Description |
| List all companies |
| Get company with linked contacts and tags |
| Create a new company |
| Update company fields |
| Soft-delete (or permanent delete) a company |
| Accent-insensitive company search |
Entries (Interactions)
Tool | Description |
| List interactions (calls, emails, meetings, etc.) |
| Log a new interaction — supports |
| Update an interaction |
| Delete an interaction |
Tasks
Tool | Description |
| List tasks with status/date filters |
| Create a task — supports |
| Update task fields |
| Delete a task |
| Mark as completed (auto-creates next occurrence for recurring tasks) |
| Mark as pending again |
| Reschedule to a new date |
| Today's tasks: overdue + due today + ASAP |
| Only overdue tasks |
QuickNotes
Tool | Description |
| List notes (filter by pinned/archived) |
| Create a note — supports |
| Update note content |
| Soft-delete (or permanent) |
| Pin to top |
| Archive a note |
| Restore a deleted/archived note |
Daily Journal
Tool | Description |
| List journal entries by date range |
| Get a specific day's journal |
| Create or update a day's journal (upsert) |
Tags
Tool | Description |
| List all tags |
| Get a tag by ID with all properties (color, icon, view mode, etc.) |
| Create a new tag |
| Update a tag (name, description, color, icon, view mode, favorite) |
| Permanently delete a tag and all its links |
| Get everything linked to a tag |
| Link any entity to a tag |
| Remove a tag link |
Task Headers (Sections)
Tool | Description |
| List all task headers (section separators) |
| Get a task header by ID |
| Create a task header (section) |
| Update a task header (name, description, collapsed) |
| Permanently delete a task header |
Contact Links
Tool | Description |
| Link a contact to a note |
| Remove a contact link from a note |
| Link a contact to an entry |
| Remove a contact link from an entry |
| Link a contact to a task |
| Remove a contact link from a task |
Utilities
Tool | Description |
| Global search across all data types |
| Items modified since a timestamp (for sync) |
| Best practices for AI agents |
Tool annotations
All tools include MCP safety annotations:
Read-only tools (
list_*,get_*,search_*): markedreadOnlyHint: trueCreate tools: marked
destructiveHint: falseUpdate tools: marked
destructiveHint: false, idempotentHint: trueDelete tools: marked
destructiveHint: true, idempotentHint: true
Activity tracking
Every write operation (create, update, delete) performed through the API is recorded in an Activity Feed visible to the user inside Keepsake. Each action shows the entity type, a content preview, and which API key was used.
This means your user can see everything you do. Be transparent and precise. If you make a mistake, let the user know so they can verify in the activity feed.
Call get_agent_instructions at the start of each session for the full best practices guide.
Environment variables
Variable | Required | Description |
| Yes | Your API key (starts with |
| No | Custom API URL (default: |
Rate limits
60 requests per minute per API key. Rate limit headers are included in responses.
API documentation
Full REST API docs: keepsake.place/api
Privacy
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.
License
MIT
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nicolascroce/keepsake-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server