The GitHub MCP Server enables seamless interaction with GitHub's API, providing functionality for file operations, repository management, search features, and more. It streamlines common GitHub tasks by handling branch creation automatically and maintaining proper Git history.
Before using the MCP Server, you need to create a GitHub Personal Access Token:
repo
scope for full repository access
public_repo
scopeAdd one of the following configurations to your claude_desktop_config.json
file:
Docker Option:
{
"mcpServers": {
"github": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"GITHUB_PERSONAL_ACCESS_TOKEN",
"mcp/github"
],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "<YOUR_TOKEN>"
}
}
}
}
NPX Option:
{
"mcpServers": {
"github": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-github"
],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "<YOUR_TOKEN>"
}
}
}
}
// Create or update a single file
{
"owner": "username",
"repo": "repository-name",
"path": "path/to/file.js",
"content": "console.log('Hello World');",
"message": "Add hello world script",
"branch": "main"
}
// Push multiple files in a single commit
{
"owner": "username",
"repo": "repository-name",
"branch": "feature-branch",
"files": [
{
"path": "src/component.js",
"content": "// Your component code"
},
{
"path": "styles/component.css",
"content": "/* Your component styles */"
}
],
"message": "Add new component with styles"
}
// Get contents of a file
{
"owner": "username",
"repo": "repository-name",
"path": "README.md",
"branch": "main"
}
// Create a new repository
{
"name": "new-project",
"description": "A description of my project",
"private": true,
"autoInit": true
}
// Fork a repository
{
"owner": "original-owner",
"repo": "repository-name",
"organization": "your-organization" // Optional
}
// Create a new branch
{
"owner": "username",
"repo": "repository-name",
"branch": "feature-branch",
"from_branch": "main" // Optional, defaults to repo default branch
}
// Create a new issue
{
"owner": "username",
"repo": "repository-name",
"title": "Bug: Application crashes on startup",
"body": "Detailed description of the bug...",
"assignees": ["developer-username"],
"labels": ["bug", "high-priority"]
}
// Create a new pull request
{
"owner": "username",
"repo": "repository-name",
"title": "Add login functionality",
"body": "This PR implements the login feature with...",
"head": "feature-branch",
"base": "main",
"draft": false
}
// Merge a pull request
{
"owner": "username",
"repo": "repository-name",
"pull_number": 42,
"commit_title": "Merge login functionality",
"merge_method": "squash"
}
// Search for code
{
"q": "import express language:typescript path:src/",
"sort": "indexed",
"order": "desc",
"per_page": 50
}
// Search for issues
{
"q": "memory leak is:issue is:open label:bug",
"sort": "created",
"order": "desc",
"per_page": 20
}
// Search for users
{
"q": "fullstack developer location:London followers:>100",
"sort": "followers",
"order": "desc"
}
language:javascript
repo:owner/name
path:app/src
extension:js
is:issue
or is:pr
is:open
or is:closed
label:bug
author:username
type:user
or type:org
followers:>1000
location:London
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > MCP and click "Add new global MCP server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"cursor-rules-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-rules-mcp"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.