Overview
Test Repository is a sample project created to verify the functionality of the GitHub MCP server.
You can access the Test Repository on GitHub at the provided URL: Test Repository.
- Demonstrates basic repository functionalities - Created to test the GitHub MCP server - Open for public access
- Testing GitHub server performance and reliability.
- Learning how to create and manage repositories on GitHub.
- Verifying the integration of tools with the GitHub API.
Add to your AI client
Use these steps to connect 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": {
"test-repo-p0735330": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-test-repo-p0735330"
]
}
}
}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": {
"test-repo-p0735330": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-test-repo-p0735330"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"test-repo-p0735330": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-test-repo-p0735330"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"test-repo-p0735330": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-test-repo-p0735330"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"test-repo-p0735330": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-test-repo-p0735330"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"test-repo-p0735330": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-test-repo-p0735330"
]
}
}
}FAQ
What is the purpose of Test Repository?
The purpose is to verify that the GitHub server functions are working correctly.
Who created the Test Repository?
The Test Repository was created by user p0735330.
Can I contribute to the Test Repository?
As this is a test project, contributions are not expected.