drio
Open app

mcp-claude

Source

using claude with different mcp servers

Catalog onlyCatalog onlySTDIO

Overview

Mcp-claude is a project that facilitates the use of the Claude AI model with various MCP (Multi-Cloud Platform) servers.

To use mcp-claude, follow the provided examples and notebooks available in the GitHub repository to set up and interact with Claude on different MCP servers.

  • Integration with multiple MCP servers for Claude AI. - Easy-to-follow examples and notebooks for users. - Flexibility in deploying Claude across different cloud environments.
  1. Deploying Claude for natural language processing tasks across various cloud platforms.
  2. Experimenting with Claude's capabilities in different server environments.
  3. Facilitating research and development using Claude in a multi-cloud setup.

Add to your AI client

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

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

Claude Code

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

.mcp.json (project root)

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

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

What is Claude?

Claude is an AI model designed for natural language understanding and generation.

Is mcp-claude free to use?

Yes! The project is open-source and available for anyone to use.

Where can I find the documentation?

Documentation and examples can be found on the GitHub repository: https://github.com/hrushik-reddy/mcp-claude.