ClaudeKeep (Notes) MCP server

Integrates a personal knowledge management system for storing, retrieving, and organizing conversation notes locally.
Back to servers
Setup instructions
Provider
Alasdair Brown
Release date
Jan 08, 2025
Language
TypeScript
Stats
10 stars

This Model Context Protocol (MCP) server implementation called ClaudeKeep allows you to save and share conversations from Claude Desktop. It provides functionality to store your chats privately or make them public through a dedicated web interface.

Installation

Getting Started

To use ClaudeKeep with Claude Desktop, follow these steps:

  1. Get an Authentication Token

    • Visit https://claudekeep.com
    • Click the Login button and authenticate with GitHub
    • Copy the JWT token displayed in the top right corner
  2. Configure Claude Desktop

    • Locate the configuration file:
      • MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json
      • Windows: %APPDATA%/Claude/claude_desktop_config.json
    • Add the following configuration (replacing <YOUR_TOKEN> with your actual token):
{
  "mcpServers": {
    "claudekeep-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "claudekeep-mcp"
      ],
      "env": {
        "CLAUDEKEEP_TOKEN": "<YOUR_TOKEN>"
      }
    }
  }
}
  1. Restart Claude Desktop
    • Completely close Claude Desktop (using CMD+Q on Mac)
    • Relaunch the application

Usage

Connecting to the MCP Server

  1. Open Claude Desktop
  2. Locate the paperclip icon and hover over it
  3. Click the plug icon that appears
  4. Select default under the claudekeep-mcp option

Saving Conversations

Once connected, your messages will be automatically stored locally in Claude Desktop. To save your chat to ClaudeKeep:

  • Save a private chat: Simply ask Claude to save the chat

    you: save this chat
    
  • Save a public chat: Specify that you want it to be public

    you: save this chat and make it public
    

Managing Your Token

If you need to refresh your authentication token:

  1. Log in to https://claudekeep.com
  2. Click the refresh icon next to your token
  3. Confirm the warning prompt
  4. A new token will be generated (the old one will be invalidated)

Troubleshooting

If the MCP server doesn't connect properly, Claude Desktop might be having issues with your PATH environment. Refer to the MCP documentation for additional configuration options.

How to install this MCP server

For Claude Code

To add this MCP server to Claude Code, run this command in your terminal:

claude mcp add-json "claudekeep-mcp" '{"command":"npx","args":["-y","claudekeep-mcp"],"env":{"CLAUDEKEEP_TOKEN":"<YOUR_TOKEN>"}}'

See the official Claude Code MCP documentation for more details.

For Cursor

There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json file so that it is available in all of your projects.

If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json file.

Adding an MCP server to Cursor globally

To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".

When you click that button the ~/.cursor/mcp.json file will be opened and you can add your server like this:

{
    "mcpServers": {
        "claudekeep-mcp": {
            "command": "npx",
            "args": [
                "-y",
                "claudekeep-mcp"
            ],
            "env": {
                "CLAUDEKEEP_TOKEN": "<YOUR_TOKEN>"
            }
        }
    }
}

Adding an MCP server to a project

To add an MCP server to a project you can create a new .cursor/mcp.json file or add it to the existing one. This will look exactly the same as the global MCP server example above.

How to use the MCP server

Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.

The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.

You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.

For Claude Desktop

To add this MCP server to Claude Desktop:

1. Find your configuration file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json

2. Add this to your configuration file:

{
    "mcpServers": {
        "claudekeep-mcp": {
            "command": "npx",
            "args": [
                "-y",
                "claudekeep-mcp"
            ],
            "env": {
                "CLAUDEKEEP_TOKEN": "<YOUR_TOKEN>"
            }
        }
    }
}

3. Restart Claude Desktop for the changes to take effect

Want to 10x your AI skills?

Get a free account and learn to code + market your apps using AI (with or without vibes!).

Nah, maybe later