drio
Open app

MCP Montano Server

Source

Simple MCP Server Implementation

Catalog onlyCatalog onlySTDIO

Overview

MCP Montano Server is a TypeScript-based server implementation designed for easy setup and development.

To use MCP Montano Server, clone the repository, install the dependencies, and run the server in development or production mode.

  • Simple setup with Node.js and npm - Supports development and production modes - Easy integration with Cursor IDE
  1. Developing and testing server applications in TypeScript
  2. Integrating with Cursor IDE for enhanced development experience
  3. Building scalable server solutions using TypeScript

Add to your AI client

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

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

Claude Code

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

.mcp.json (project root)

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

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

What are the prerequisites for using MCP Montano Server?

You need Node.js (v18 or higher) and npm installed.

Is there a recommended IDE for this project?

Yes, Cursor IDE is recommended for development.

What license is MCP Montano Server under?

This project is licensed under the MIT License.