drio
Open app

MCP Test Repository

Source

A test repository created using the GitHub MCP server

Catalog onlyCatalog onlySTDIO

Overview

MCP Test Repository is a demonstration repository created using the GitHub MCP server to showcase its capabilities.

To use this repository, you can clone it from GitHub and explore its features such as repository creation, file updates, and search functionalities.

  • Repository creation - File creation and updates - Repository search - File content retrieval
  1. Demonstrating the capabilities of the GitHub MCP server.
  2. Testing repository management features.
  3. Learning how to interact with GitHub programmatically.

Add to your AI client

Use these steps to connect MCP Test Repository 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-test-repo-sshimomu2k2": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-test-repo-sshimomu2k2"
      ]
    }
  }
}

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

Claude Code

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

.mcp.json (project root)

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

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

What is the purpose of this repository?

This repository serves as a test environment to demonstrate the functionalities of the GitHub MCP server.

Can I contribute to this repository?

Yes! Contributions are welcome, and you can submit pull requests for any improvements.

Is this repository official?

No, this is a personal test repository and not an official GitHub repository.