๐Ÿ”— GitHub MCP Server for Claude Desktop

by shibdad

457 downloads
Not rated
GitHub

Description

# ๐Ÿ”— GitHub MCP Server for Claude Desktop > Supercharge your Claude Desktop with seamless GitHub integration! This MCP server connects Claude Desktop directly to your GitHub repos and git commands, letting you interact with your code and repositories through natural conversationโ€ฆ

About

# ๐Ÿ”— GitHub MCP Server for Claude Desktop > Supercharge your Claude Desktop with seamless GitHub integration! This MCP server connects Claude Desktop directly to your GitHub repos and git commands, letting you interact with your code and repositories through natural conversation. ## โœจ Features - ๐Ÿ”„ `git-clone` - Cloneโ€ฆ

Details

Author
shibdad
Downloads
457
Categories
Developer Tools

- Clone any repository with git-clone
- Check repository status with git-status
- Browse GitHub repositories with github-list-repos
- Get detailed repository info with github-repo-info
- Commit changes with git-commit
- Push commits to GitHub with git-push
- Create new repositories with github-create-repo

Clone the repository, install dependencies with npm install, make start.sh and index.js executable, and add your GitHub token via a .github_token file. Then edit Claude Desktopโ€™s config file (macOS: ~/Library/Application Support/Claude/claude_desktop_config.json, Windows: %APPDATA%\Claude\claude_desktop_config.json) to add the server entry with command and args pointing to start.sh, and restart Claude.

๐Ÿ”— GitHub MCP Server for Claude Desktop

> Supercharge your Claude Desktop with seamless GitHub integration!

This MCP server connects Claude Desktop directly to your GitHub repos and git commands, letting you interact with your code and repositories through natural conversation.

โœจ Features

- ๐Ÿ”„ git-clone - Clone any repository with a simple request
- ๐Ÿ“Š git-status - Check what's happening in your git repos
- ๐Ÿ“‹ github-list-repos - Browse your GitHub repositories
- ๐Ÿ” github-repo-info - Get detailed information about any repository
- ๐Ÿ“ git-commit - Commit changes to your repositories
- ๐Ÿš€ git-push - Push your commits to GitHub
- ๐Ÿ†• github-create-repo - Create new GitHub repositories

๐Ÿš€ Quick Start

1. Clone this repo:

   git clone https://github.com/shibdad/github-mcp-server.git
cd github-mcp-server

2. Install dependencies:

   npm install

3. Make it executable:

   chmod +x start.sh index.js

4. Add your GitHub token (for private repos and API access):

   echo "your-github-token" > .github_token

5. Hook it up to Claude Desktop:

Edit Claude's config file:
- macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
- Windows: %APPDATA%\Claude\claude_desktop_config.json

Add this to your config:

   {
"mcpServers": {
"github": {
"command": "/bin/sh",
"args": ["-c", "/path/to/github-mcp-server/start.sh"]
}
}
}

6. Restart Claude and you're good to go!

๐Ÿ’ฌ Try These Prompts

Once connected, ask Claude things like:
- "Clone the tensorflow/models repository to my downloads folder"
- "What's the git status of my project directory?"
- "Show me a list of my GitHub repositories"
- "Get details about the microsoft/vscode repository"
- "Commit my changes with the message 'Update documentation'"
- "Push my commits to GitHub"
- "Create a new repository called 'my-awesome-project'"

๐Ÿ”ง Requirements

- Node.js 16+
- Git command-line tools
- Claude Desktop
- GitHub Personal Access Token (for API access)

๐Ÿ”’ GitHub Token Options

Need to access private repos? Add your token any of these ways:

1. Create a .github_token file in the project folder
2. Set the GITHUB_TOKEN environment variable
3. Add it directly in Claude's config:

   {
"mcpServers": {
"github": {
"command": "/bin/sh",
"args": ["-c", "/path/to/github-mcp-server/start.sh"],
"env": {
"GITHUB_TOKEN": "your-github-token"
}
}
}
}

๐Ÿ™‹โ€โ™‚๏ธ Contributing

Found a bug? Want to add a feature? PRs welcome!

๐Ÿ“œ License

MIT

No reviews yet โ€” be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.