drio
Open app

MCP_claude

Source

This is to demonstrate how an MCP server can be built for Claude Desktop MCP Client

Catalog onlyCatalog onlySTDIO

Overview

MCP_claude is a project that demonstrates how to build an MCP server for the Claude Desktop MCP Client.

To use MCP_claude, follow the instructions provided in the GitHub repository to set up the server and connect it with the Claude Desktop client.

  • Demonstrates server setup for Claude Desktop MCP Client - Provides a framework for building MCP servers - Open-source project available on GitHub
  1. Building custom MCP servers for various applications.
  2. Learning how to integrate server-client architecture in desktop applications.
  3. Contributing to open-source projects related to MCP.

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

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

Claude Code

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

.mcp.json (project root)

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

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

What is an MCP server?

An MCP server is a server designed to work with the MCP protocol, facilitating communication between clients and servers.

Is MCP_claude free to use?

Yes! MCP_claude is an open-source project and is free to use for everyone.

Where can I find the documentation?

Documentation and setup instructions can be found in the GitHub repository at https://github.com/GayuniBas2001/MCP_claude.