drio
Open app

Cline Mcp Server Test

Source

ClineとMCP Serverの接続をテストするためのリポジトリです。

Catalog onlyCatalog onlySTDIO

Overview

Cline MCP Server Test is a repository designed to test the connection between Cline and the MCP server.

To use this repository, clone it from GitHub and follow the instructions in the README file to set up the environment and run the tests.

  • Tests the connectivity between Cline and MCP server. - Provides sample configurations for easy setup. - Includes automated test scripts for efficient testing.
  1. Verifying the connection between Cline and MCP server in development environments.
  2. Ensuring that the MCP server is functioning correctly with Cline.
  3. Debugging connection issues between Cline and the MCP server.

Add to your AI client

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

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

Claude Code

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

.mcp.json (project root)

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

VS Code (Copilot)

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

.vscode/mcp.json

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

What is the purpose of this repository?

The purpose is to facilitate testing the connection between Cline and the MCP server.

How do I set up the tests?

Follow the instructions in the README file after cloning the repository.

Is there any support available?

Yes, you can open issues on the GitHub repository for support.