Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 24 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,32 @@ automation and interaction capabilities for developers and tools.
2. [Create a GitHub Personal Access Token](https://github.com/settings/personal-access-tokens/new).
The MCP server can use many of the GitHub APIs, so enable the permissions that you feel comfortable granting your AI tools (to learn more about access tokens, please check out the [documentation](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens)).

## Installation

### Homebrew (Mac)
```
brew install github-mcp-server
```

## Installation
#### Using the CLI After Homebrew Installation

After installing with Homebrew, you can run the server with:

```
# Set your GitHub token
export GITHUB_PERSONAL_ACCESS_TOKEN=<github_token>
```

```
# Run the server in stdio mode
github-mcp-server stdio
```

For more options and commands:

```
github-mcp-server --help
```

### Usage with VS Code

Expand Down