Mission Control Protocol (MCP) server for GitHub and Windsurf integration
MCP Server is a Mission Control Protocol server designed for integration with GitHub and Windsurf, allowing users to manage GitHub issues and pull requests through a dedicated API.
To use MCP Server, configure your GitHub integration by setting up your access token and webhook secret in the .env file, install the required dependencies, and run the server using Python. The server will be accessible at http://localhost:8000.
Use these steps to connect MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-server-alpha-necro": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-alpha-necro"
]
}
}
}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-server-alpha-necro": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-alpha-necro"
]
}
}
}Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-server-alpha-necro": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-alpha-necro"
]
}
}
}Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
MCP Server is built using Python and utilizes FastAPI for its web framework.
You need to copy the `.env.example` file to `.env` and add your GitHub access token and webhook secret.
Yes, API documentation is available at `/docs` once the server is running.7:["$","div",null,{"className":"container mx-auto flex flex-col gap-4","children":["$L26","$L27",["$","$L28",null,{"currentProject":{"id":3650,"uuid":"db9c1cb0-78d9-4c4b-a469-f4ef40d96c2a","name":"mcp-server","title":"MCP Server","description":"Mission Control Protocol (MCP) server for GitHub and Windsurf integration","avatar_url":"https://avatars.githubusercontent.com/u/153228239?v=4","created_at":"2025-03-20T20:36:01.401Z","updated_at":"2025-03-20T21:00:39.243Z","status":"created","author_name":"Alpha-Necro","author_avatar_url":"https://avatars.githubusercontent.com/u/153228239?v=4","tags":"[]","category":"developer-tools","is_featured":false,"sort":1,"url":"https://github.com/Alpha-Necro/mcp-server","target":"_self","content":"$29","summary":"$2a","img_url":null,"type":null,"metadata":"{\"star\":\"0\",\"license\":\"\",\"language\":\"Python\",\"is_official\":false,\"latest_commit_time\":\"2025-03-20 16:42:28\"}","user_uuid":null,"tools":null,"sse_url":null,"sse_provider":null,"sse_params":null,"is_official":false,"server_command":null,"server_params":null,"server_config":null,"allow_call":false,"is_innovation":false,"is_dxt":false,"dxt_manifest":null,"dxt_file_url":null,"is_audit":false},"randomProjects":[],"currentServerKey":"$undefined"}]]}]
{
"servers": {
"mcp-server-alpha-necro": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-alpha-necro"
]
}
}
}Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-server-alpha-necro": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-alpha-necro"
]
}
}
}Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-server-alpha-necro": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-alpha-necro"
]
}
}
}