drio
Open app

Mcp Server

Source

Inkdrop Model Context Protocol Server

Catalog onlyCatalog onlySTDIO

Overview

Mcp Server is an experimental server that implements the Model Context Protocol for the Inkdrop Local HTTP Server API, allowing users to manage notes and notebooks through HTTP requests.

To use Mcp Server, set up a local HTTP server and configure the server settings in the Claude Desktop application. You can then interact with the server using various commands to manage notes.

  • Retrieve, create, update, and search notes via HTTP requests. - Manage notebooks and their contents. - Debugging support through the MCP Inspector.
  1. Accessing and managing notes from a local Inkdrop database.
  2. Automating note management tasks through scripts.
  3. Debugging and inspecting note data using the MCP Inspector.

Add to your AI client

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

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

Claude Code

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

.mcp.json (project root)

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

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

Is Mcp Server stable for production use?

No, Mcp Server is highly experimental and should be used at your own risk.

What programming language is Mcp Server written in?

Mcp Server is written in JavaScript.

How can I debug issues with Mcp Server?

You can use the MCP Inspector for debugging and monitoring server logs.