drio
Open app

MCP-server

Source

MCP server setup

Catalog onlyCatalog onlySTDIO

Overview

MCP-server is a setup tool designed for configuring and managing MCP servers efficiently.

To use MCP-server, clone the repository from GitHub, follow the setup instructions in the README, and configure your server settings as needed.

  • Easy setup for MCP servers - Configuration management for server settings - Written in Python for flexibility and ease of use
  1. Setting up a new MCP server for development purposes.
  2. Managing configurations for multiple MCP servers in a production environment.
  3. Automating server setup processes to save time.

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

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

Claude Code

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

.mcp.json (project root)

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

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

What programming language is MCP-server written in?

MCP-server is written in Python, making it accessible for developers familiar with the language.

Is there documentation available?

Yes! Documentation is available in the GitHub repository to guide users through the setup process.

Can I contribute to MCP-server?

Absolutely! Contributions are welcome, and you can find guidelines in the repository.