drio
Open app

test-repo

Source

Test repository created by MCP server

Catalog onlyCatalog onlySTDIO

Overview

Test-repo is a sample repository created by the MCP server for testing purposes.

To use test-repo, clone the repository from GitHub and explore the provided files and documentation.

  • Sample code and documentation for testing - Easy to clone and use for experimentation - Created for demonstration purposes
  1. Testing new features in a controlled environment
  2. Learning how to use GitHub repositories
  3. Experimenting with sample code

Add to your AI client

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

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

Claude Code

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

.mcp.json (project root)

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

VS Code (Copilot)

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

.vscode/mcp.json

{
  "servers": {
    "test-repo-wwei1101": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-test-repo-wwei1101"
      ]
    }
  }
}

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

What is the purpose of test-repo?

The purpose of test-repo is to provide a sample repository for testing and demonstration.

Is test-repo free to use?

Yes! test-repo is free to use for everyone.

Can I contribute to test-repo?

As this is a test repository, contributions are not expected.