Overview
connector-GitHubTestRepo is a GitHub repository created from an MCP server demo, designed to facilitate integration and testing with GitHub.
To use this repository, clone it from GitHub and follow the instructions in the README file to set up your environment and run tests.
- Easy integration with GitHub for testing purposes. - Sample code and configurations for quick setup. - Demonstration of MCP server functionalities.
- Testing GitHub API integrations.
- Demonstrating server capabilities in a controlled environment.
- Providing a template for future GitHub projects.
Add to your AI client
Use these steps to connect connector-GitHubTestRepo 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": {
"connector-githubtestrepo-biswapm": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-connector-githubtestrepo-biswapm"
]
}
}
}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": {
"connector-githubtestrepo-biswapm": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-connector-githubtestrepo-biswapm"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"connector-githubtestrepo-biswapm": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-connector-githubtestrepo-biswapm"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"connector-githubtestrepo-biswapm": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-connector-githubtestrepo-biswapm"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"connector-githubtestrepo-biswapm": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-connector-githubtestrepo-biswapm"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"connector-githubtestrepo-biswapm": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-connector-githubtestrepo-biswapm"
]
}
}
}FAQ
What is the purpose of this repository?
This repository serves as a demo for integrating with GitHub using an MCP server.
Is there documentation available?
Yes! Documentation is provided in the README file of the repository.
Can I contribute to this project?
Yes! Contributions are welcome, and you can submit pull requests.