Linktree Demo
A demo repository created using the GitHub MCP server
Overview
Linktree Demo is a demonstration repository created to showcase the capabilities of the GitHub MCP server, allowing users to interact with GitHub's API.
To use Linktree Demo, clone the repository from GitHub and explore the various features and functionalities it offers for repository management and GitHub operations.
- Repository creation and management - File creation and updates - Repository search capabilities - Direct interaction with the GitHub API
- Demonstrating how to create and manage repositories on GitHub.
- Showcasing file operations such as creation and updates.
- Providing examples of how to search repositories using the GitHub API.
Add to your AI client
Use these steps to connect Linktree Demo 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": {
"linktree-demo-bulentongun": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-linktree-demo-bulentongun"
]
}
}
}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": {
"linktree-demo-bulentongun": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-linktree-demo-bulentongun"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"linktree-demo-bulentongun": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-linktree-demo-bulentongun"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"linktree-demo-bulentongun": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-linktree-demo-bulentongun"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"linktree-demo-bulentongun": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-linktree-demo-bulentongun"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"linktree-demo-bulentongun": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-linktree-demo-bulentongun"
]
}
}
}FAQ
What is the purpose of this demo repository?
The purpose is to demonstrate the functionalities of the GitHub MCP server.
Can I use this demo for my own projects?
Yes! You can clone the repository and adapt it for your own needs.
Is there any documentation available?
Yes, you can find documentation on the GitHub repository page.