drio
Open app

MCP Testing

Source

Repository for testing MCP Server tools and functionality

Catalog onlyCatalog onlySTDIO

Overview

MCP Testing is a repository designed for testing MCP Server tools and functionality, serving as a sandbox environment for exploring and validating various MCP-related features and capabilities.

To use MCP Testing, clone the repository from GitHub and follow the instructions provided in the documentation to set up the MCP Server tools and start testing.

  • Testing of MCP Server tools and functionalities - Git operations through the Model Context Protocol - Integration with GitHub API for repository management
  1. Validating Git operations in a controlled environment.
  2. Exploring new features of MCP Server tools.
  3. Testing GitHub integration for project management.

Add to your AI client

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

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

Claude Code

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

.mcp.json (project root)

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

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

What is the purpose of MCP Testing?

MCP Testing is used to test and validate MCP Server tools and functionalities.

How can I contribute to MCP Testing?

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

Is there documentation available?

Yes, documentation is provided in the repository to guide users on how to set up and use the tools.