MCP.so
登录

GitHub MCP Server

@tomo-cps

关于 GitHub MCP Server

GitHub MCP Server implementation and testing repository

基本信息

分类

版本控制

传输方式

stdio

发布者

tomo-cps

配置

暂无标准配置

该服务器的 README 中没有可解析的 MCP 配置块,请前往代码仓库查看安装说明。

代码仓库

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

What is GitHub MCP Server?

GitHub MCP Server is an implementation of the Model Context Protocol (MCP) that integrates with the GitHub API. It enables LLM agents to perform repository operations, code search, and issue/PR management through standardized endpoints.

How to use GitHub MCP Server?

Install by cloning the repository, installing dependencies (npm install or yarn install), and creating a .env file with your GitHub Personal Access Token and port. Start the server with npm run dev (development) or npm start (production). Then send HTTP POST requests to http://localhost:3000/mcp/execute with a JSON body containing a command and params object.

Key features of GitHub MCP Server

  • Repository operations: create, edit files, manage branches
  • Code search across GitHub
  • Issue and pull request creation, update, and comments
  • Secure authentication via GitHub Personal Access Token

Use cases of GitHub MCP Server

  • Retrieve repository information (owner, repo) for analysis
  • Create issues with labels and descriptions from LLM commands
  • Search code across public repositories
  • Manage pull requests and merge workflows programmatically

FAQ from GitHub MCP Server

What does GitHub MCP Server do compared to using the GitHub API directly?

It provides a standardized MCP interface that LLM agents can use via simple JSON commands, abstracting away raw API calls and authentication details.

What are the dependencies and runtime requirements?

Node.js version 16.0.0 or higher, npm or yarn, and a GitHub Personal Access Token with appropriate scopes (repo, user, read:org recommended).

Where does user data live?

Data is not persisted on the server; it is fetched from the GitHub API per request and returned directly to the client. The server runs locally on your machine.

Are there any known limits?

GitHub API rate limits apply. If the limit is reached, wait before retrying. CORS errors may occur during cross-origin calls; ensure the server sets proper CORS headers.

What transport and authentication does the server use?

The server uses HTTP transport. Authentication is handled via a GitHub Personal Access Token stored in the GITHUB_TOKEN environment variable.

评论

版本控制 分类下的更多 MCP 服务器