Claude Mcp Test
Test repository created via claude-desktop with github MCP server
Overview
Claude Mcp Test is a test repository created using the Claude Desktop application with a GitHub MCP server integration.
To use Claude Mcp Test, visit the GitHub repository, clone or download the project, and explore its features or run tests as needed.
- Created via Claude Desktop for ease of use - Integration with GitHub MCP Server - Facilitates testing and development processes
- Testing functionalities developed using the Claude Desktop
- Experimenting with GitHub MCP server features
- Providing a template for future projects integrating Github MCP
Add to your AI client
Use these steps to connect Claude Mcp 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": {
"claude-mcp-test-devacse": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-claude-mcp-test-devacse"
]
}
}
}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": {
"claude-mcp-test-devacse": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-claude-mcp-test-devacse"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"claude-mcp-test-devacse": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-claude-mcp-test-devacse"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"claude-mcp-test-devacse": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-claude-mcp-test-devacse"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"claude-mcp-test-devacse": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-claude-mcp-test-devacse"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"claude-mcp-test-devacse": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-claude-mcp-test-devacse"
]
}
}
}FAQ
What is the main purpose of this repository?
The main purpose is to demonstrate integration with the GitHub MCP server and serve as a testing platform for the Claude Desktop application.
Is this project open-source?
Yes, the project is available on GitHub for anyone to access, modify, and contribute to.
How can I contribute to the Claude Mcp Test?
You can contribute by forking the repository, making changes, and submitting a pull request.