drio
Open app

mcp-server MCP server

Source

Catalog onlyCatalog onlySTDIO

Overview

The mcp-server is a basic MCP (Model Context Protocol) server that implements a simple note storage system, allowing users to create, store, and summarize notes.

To use mcp-server, install it following the quickstart guide, add notes using the add-note tool, and summarize notes with the summarize-notes prompt.

  • Custom note:// URI scheme for accessing individual notes - Ability to create and store notes with a name, description, and content - Summarization of all stored notes with customizable detail levels
  1. Storing personal notes for easy access and management
  2. Summarizing notes for quick reviews or presentations
  3. Integrating with other applications that require note storage and retrieval

Add to your AI client

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

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

Claude Code

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

.mcp.json (project root)

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

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-server-dennismartis": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-dennismartis"
      ]
    }
  }
}

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

What is the note:// URI scheme?

It is a custom scheme used to access individual notes stored in the mcp-server.

How do I add a note?

Use the `add-note` tool with the required name and content arguments.

Can I customize the summary detail level?

Yes! You can specify a "style" argument to control the detail level of the summary.