drio
Open app

MCP Notes Server

Source

A Model Context Protocol (MCP) server implementation providing persistent note management created with Python SDK.

Catalog onlyCatalog onlySTDIO

Overview

MCP Notes Server is a Model Context Protocol (MCP) server implementation designed for managing notes with persistent storage, built using Python SDK.

To use MCP Notes Server, install it via Smithery or manually set it up by creating a virtual environment and installing the required dependencies. Start the server and use the provided tools to manage your notes.

  • Create, read, update, and delete notes - Persistent storage using JSON - Timestamp tracking for creation and modifications - Note summarization via prompts - Resource-based access using note:// URI scheme
  1. Managing personal notes with easy access and modification.
  2. Collaborative note-taking for teams using the server.
  3. Summarizing notes for quick reviews and insights.

Add to your AI client

Use these steps to connect MCP Notes Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-notes-truaxki": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-notes-truaxki"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-notes-truaxki": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-notes-truaxki"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-notes-truaxki": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-notes-truaxki"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-notes-truaxki": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-notes-truaxki"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-notes-truaxki": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-notes-truaxki"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-notes-truaxki": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-notes-truaxki"
      ]
    }
  }
}

FAQ

Can I access my notes from different devices?

Yes! As long as the server is running, you can access your notes from any device connected to it.

Is there a limit to the number of notes I can create?

No, you can create as many notes as your storage allows.

How does the note summarization feature work?

The server uses prompts to generate summaries of your notes, which can be brief or detailed based on your needs.