drio
Open app

mcp-server-test

Source

Test MCP Server

Catalog onlyCatalog onlySTDIO

Overview

MCP Server Test is a test repository designed for evaluating various functions of the MCP server on GitHub. # How to use MCP Server Test? To utilize MCP Server Test, clone the repository from GitHub, run the relevant test functions provided, and analyze the output results. # Key features of MCP Server Test? - Comprehensive test functions for MCP server evaluation - Easily accessible GitHub repository - Transparent contribution and issue tracking # Use cases of MCP Server Test?

  1. Testing server responses under different conditions.
  2. Debugging and enhancing server functionality.
  3. Collaborating on server improvement through community contributions. # FAQ from MCP Server Test? - What programming languages are supported? > The repository supports multiple languages as defined in the server functions under test. - How can I contribute to the MCP Server Test Repository? > You can create issues or submit pull requests on GitHub to contribute to testing functions or improving documentation. - Where can I find the documentation? > The documentation can be found in the repository's README file on GitHub.7:["$","div",null,{"className":"container mx-auto flex flex-col gap-4","children":["$L26","$L27",["$","$L28",null,{"currentProject":{"id":274,"uuid":"3fb8e086-5f66-411c-8d46-d7e4ea70f4ff","name":"mcp-server-test","title":"mcp-server-test","description":"Test MCP Server","avatar_url":"https://avatars.githubusercontent.com/u/3103759?v=4","created_at":"2024-12-13T10:44:30.333Z","updated_at":"2024-12-13T12:28:10.241Z","status":"created","author_name":"paveldudka","author_avatar_url":"https://avatars.githubusercontent.com/u/3103759?v=4","tags":"[]","category":"developer-tools","is_featured":false,"sort":1,"url":"https://github.com/paveldudka/mcp-server-test","target":"_self","content":"# mcp-server-test\nTest MCP Server","summary":"$29","img_url":null,"type":null,"metadata":null,"user_uuid":null,"tools":null,"sse_url":null,"sse_provider":null,"sse_params":null,"is_official":false,"server_command":null,"server_params":null,"server_config":null,"allow_call":false,"is_innovation":false,"is_dxt":false,"dxt_manifest":null,"dxt_file_url":null,"is_audit":false},"randomProjects":[],"currentServerKey":"$undefined"}]]}]

Add to your AI client

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

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

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

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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