MCP Test Repository
Ett testrepository skapat via GitHub MCP-server
Overview
MCP Test Repository is a test repository created via the GitHub MCP server, designed to demonstrate various functionalities of the GitHub API.
To use this repository, you can clone it from GitHub and explore the functionalities demonstrated, such as creating a new repository or searching for repositories and users.
- Create a new repository using
create_repository- Add or update files withcreate_or_update_file- Search for repositories withsearch_repositories- Search for users withsearch_users
- Demonstrating how to interact with the GitHub API.
- Testing repository creation and file management.
- Searching for repositories and users programmatically.
Add to your AI client
Use these steps to connect MCP 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-klarkenolofsson": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-test-repo-klarkenolofsson"
]
}
}
}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-klarkenolofsson": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-test-repo-klarkenolofsson"
]
}
}
}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-klarkenolofsson": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-test-repo-klarkenolofsson"
]
}
}
}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-klarkenolofsson": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-test-repo-klarkenolofsson"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-test-repo-klarkenolofsson": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-test-repo-klarkenolofsson"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-test-repo-klarkenolofsson": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-test-repo-klarkenolofsson"
]
}
}
}FAQ
What is the purpose of this repository?
This repository serves as a demonstration of the GitHub MCP server functionalities.
Can I contribute to this repository?
Yes! Contributions are welcome, and you can submit pull requests.
Is there any documentation available?
Yes, you can find documentation on the GitHub API for more details.