drio
Open app

Test d'intégration MCP Server GitHub

Source

Référentiel de test pour l'intégration MCP server GitHub

Catalog onlyCatalog onlySTDIO

Overview

MCP Server Test is a repository designed for testing the integration with the MCP server on GitHub.

To use MCP Server Test, clone the repository from GitHub and run the integration tests to verify that all GitHub operations can be performed through the MCP server.

  • Integration testing for GitHub operations - Easy setup and execution of tests - Supports various GitHub functionalities
  1. Verifying the functionality of GitHub API calls through the MCP server.
  2. Ensuring that all GitHub operations are compatible with the MCP server.
  3. Testing new features or updates in the MCP server integration.

Add to your AI client

Use these steps to connect Test d'intégration MCP Server GitHub 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-server-test-erkkul": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-test-erkkul"
      ]
    }
  }
}

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

Claude Code

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

.mcp.json (project root)

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

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

What programming language is used in this project?

The project is developed in Python.

Is this repository official?

No, this repository is not an official project.

How can I contribute to this project?

You can contribute by submitting issues or pull requests on GitHub.