drio
Open app

GitLab MCP Server Test Repository

Source

Test repository for MCP GitLab server validation

Catalog onlyCatalog onlySTDIO

Overview

This repository serves as a testing playground for GitLab MCP Server integrations, containing sample files and structures to validate your MCP server installation.

To use this repository, clone it, configure your GitLab MCP Server to point to it, and run the verification tests using the gitlab-mcp-server-tools repository.

  • Contains various test files for different GitLab MCP Server operations - Includes text files, code files, markdown documentation, and configuration samples - Provides a structured approach to validate MCP server installations
  1. Verifying the installation of GitLab MCP Server
  2. Testing different operations and configurations of the MCP server
  3. Assisting in troubleshooting MCP server issues

Add to your AI client

Use these steps to connect GitLab MCP Server Test Repository 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-test-repo-1-oneofgods": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-test-repo-1-oneofgods"
      ]
    }
  }
}

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

Claude Code

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

.mcp.json (project root)

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

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

What types of files are included in the repository?

The repository includes text files, code files, markdown documentation, and configuration samples.

Is this repository suitable for production use?

No, this repository is intended for testing and validation purposes only.

Where can I find related tools?

You can find related tools in the [gitlab-mcp-server-tools](https://github.com/OneofGods/gitlab-mcp-server-tools) repository.