Overview
Coderider-mcp is a project that provides MCP servers for Jihulab, aimed at enhancing coding collaboration and server management.
To use coderider-mcp, clone the repository from GitHub and follow the setup instructions provided in the README file.
- Provides a robust server environment for coding projects. - Facilitates collaboration among developers. - Easy setup and configuration through GitHub.
- Setting up a collaborative coding environment for teams.
- Managing server resources for coding projects.
- Enhancing productivity through streamlined server management.
Add to your AI client
Use these steps to connect coderider-mcp 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": {
"coderider-mcp-victorzxj": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-coderider-mcp-victorzxj"
]
}
}
}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": {
"coderider-mcp-victorzxj": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-coderider-mcp-victorzxj"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"coderider-mcp-victorzxj": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-coderider-mcp-victorzxj"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"coderider-mcp-victorzxj": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-coderider-mcp-victorzxj"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"coderider-mcp-victorzxj": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-coderider-mcp-victorzxj"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"coderider-mcp-victorzxj": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-coderider-mcp-victorzxj"
]
}
}
}FAQ
What is the purpose of coderider-mcp?
Coderider-mcp is designed to provide a server environment for coding projects, making collaboration easier.
How do I contribute to the project?
You can contribute by forking the repository, making changes, and submitting a pull request.
Is there any documentation available?
Yes, documentation is available in the GitHub repository.