My Server MCP
Un serveur MCP pour gérer les interactions avec l'API GitHub
Overview
My Server MCP is a server designed to manage interactions with the GitHub API, allowing developers to easily integrate GitHub functionalities into their applications.
To use My Server MCP, clone the repository from GitHub, install the necessary dependencies, configure your GitHub token in a .env file, and start the server.
- Easy integration with the GitHub API - Built with Next.js and TypeScript for modern web development - Simple setup and configuration process
- Automating GitHub repository management tasks
- Building applications that require GitHub data retrieval
- Creating custom GitHub bots or tools
Add to your AI client
Use these steps to connect My Server MCP 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": {
"my-server-mcp-french-team": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-my-server-mcp-french-team"
]
}
}
}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": {
"my-server-mcp-french-team": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-my-server-mcp-french-team"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"my-server-mcp-french-team": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-my-server-mcp-french-team"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"my-server-mcp-french-team": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-my-server-mcp-french-team"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"my-server-mcp-french-team": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-my-server-mcp-french-team"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"my-server-mcp-french-team": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-my-server-mcp-french-team"
]
}
}
}FAQ
What technologies are used in My Server MCP?
My Server MCP is built using Next.js and TypeScript.
How do I configure my GitHub token?
You need to create a `.env` file at the root of the project and add your GitHub token as `GITHUB_TOKEN=votre_token_github`.
Is there a license for My Server MCP?
Yes, My Server MCP is licensed under the MIT License.