drio
Open app

📝 MCP Notes

Source

A simple note-taking MCP server for recording and managing notes with AI models.

Catalog onlyCatalog onlySTDIO

Overview

MCP Notes is a simple note-taking application built on the Model Context Protocol (MCP) that allows users to record and manage notes using AI models. It is designed for personal use, enabling users to capture thoughts, insights, and tasks without the need for project files.

To use MCP Notes, you can run the server using Node.js and interact with it through a web interface or via AI models that support function calls. You will need to set up AWS DynamoDB for note storage.

  • Dual server architecture for AI-driven note management and user interface. - AI-powered note taking for recording thoughts and tasks. - Comprehensive note management capabilities (create, list, retrieve, update, delete). - Secure storage using AWS DynamoDB. - Flexible authentication options.
  1. Recording personal thoughts and inspirations.
  2. Managing tasks and notes for projects without affecting project files.
  3. Utilizing AI to enhance note-taking and retrieval processes.

Add to your AI client

Use these steps to connect 📝 MCP Notes 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": {
    "mcpnotes-9ninety": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcpnotes-9ninety"
      ]
    }
  }
}

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": {
    "mcpnotes-9ninety": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcpnotes-9ninety"
      ]
    }
  }
}

Claude Code

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

.mcp.json (project root)

{
  "mcpServers": {
    "mcpnotes-9ninety": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcpnotes-9ninety"
      ]
    }
  }
}

VS Code (Copilot)

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

.vscode/mcp.json

{
  "servers": {
    "mcpnotes-9ninety": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcpnotes-9ninety"
      ]
    }
  }
}

Windsurf

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

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcpnotes-9ninety": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcpnotes-9ninety"
      ]
    }
  }
}

Cline

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

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcpnotes-9ninety": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcpnotes-9ninety"
      ]
    }
  }
}