drio
Open app

marker-mcp

Source

A

Catalog onlyCatalog onlySTDIO

Overview

marker-mcp is a server project designed to facilitate the management of marker-related tasks and functionalities.

To use marker-mcp, clone the repository from GitHub and follow the setup instructions provided in the README file.

  • Provides a robust server for marker management - Easy integration with existing applications - Supports various marker functionalities
  1. Managing marker data for applications
  2. Integrating marker functionalities into software solutions
  3. Developing custom applications that require marker management

Add to your AI client

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

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

Claude Code

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

.mcp.json (project root)

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

VS Code (Copilot)

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

.vscode/mcp.json

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

What programming languages does marker-mcp support?

marker-mcp is designed to be language-agnostic, allowing integration with various programming languages.

Is marker-mcp open source?

Yes! marker-mcp is open source and available on GitHub.

How can I contribute to marker-mcp?

Contributions are welcome! Please refer to the contribution guidelines in the repository.