drio
Open app

testmcpgithubdemobypurnatwo

Source

created from MCP server demo

Catalog onlyCatalog onlySTDIO

Overview

This project is a demonstration created from an MCP server, showcasing various functionalities and features.

To use this project, visit the GitHub repository at testmcpgithubdemobypurnatwo and follow the instructions provided in the README file.

  • Demonstration of MCP server capabilities - Open-source project available on GitHub - Community-driven development and contributions
  1. Learning about MCP server functionalities
  2. Contributing to an open-source project
  3. Exploring server-side programming techniques

Add to your AI client

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

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

Claude Code

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

.mcp.json (project root)

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

VS Code (Copilot)

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

.vscode/mcp.json

{
  "servers": {
    "testmcpgithubdemobypurnatwo-biswapm": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-testmcpgithubdemobypurnatwo-biswapm"
      ]
    }
  }
}

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

What is the purpose of this project?

The project serves as a demo for MCP server functionalities and is intended for educational purposes.

Is this project open-source?

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

How can I contribute to this project?

You can contribute by forking the repository, making changes, and submitting a pull request.