GitHub Extension
🎥Plug & Play
Watch the demo
This tutorial covers how to add the GitHub MCP Server as a Goose extension to enable file operations, repository management, search functionality, and more.
TLDR
Command
npx -y @modelcontextprotocol/server-github
Environment Variable
GITHUB_PERSONAL_ACCESS_TOKEN: <YOUR_TOKEN>
info
Note that you'll need Node.js installed on your system to run this command, as it uses npx.
Configuration
- Goose CLI
- Goose Desktop
- Run the
configure
command:
goose configure
- Choose to add a
Command-line Extension
┌ goose-configure
│
◇ What would you like to configure?
│ Add Extension
│
◆ What type of extension would you like to add?
│ ○ Built-in Extension
│ ● Command-line Extension (Run a local command or script)
│ ○ Remote Extension
└
- Give your extension a name
┌ goose-configure
│
◇ What would you like to configure?
│ Add Extension
│
◇ What type of extension would you like to add?
│ Command-line Extension
│
◆ What would you like to call this extension?
│ github
└
- Enter the command
┌ goose-configure
│
◇ What would you like to configure?
│ Add Extension
│
◇ What type of extension would you like to add?
│ Command-line Extension
│
◇ What would you like to call this extension?
│ github
│
◆ What command should be run?
│ npx -y @modelcontextprotocol/server-github
└
- Obtain a GitHub Personal Access Token and paste it in.
info
When creating your access token, you can specify the repositories and granular permissions you'd like Goose to have access to.
┌ goose-configure
│
◇ What would you like to configure?
│ Add Extension
│
◇ What type of extension would you like to add?
│ Command-line Extension
│
◇ What would you like to call this extension?
│ github
│
◇ What command should be run?
│ npx -y @modelcontextprotocol/server-github
◆ Would you like to add environment variables?
│ Yes
│
◇ Environment variable name:
│ GITHUB_PERSONAL_ACCESS_TOKEN
│
◇ Environment variable value:
│ ▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪
│
◇ Add another environment variable?
│ No
└ Added github extension
- Click
...
in the upper right corner - Click
Settings
- Under
Extensions
, click theAdd
link - On the
Add Extension Manually
modal, enter the following:- Type:
Standard IO
- ID:
gh-mcp
(set this to whatever you want) - Name:
github
(set this to whatever you want) - Description:
GitHub MCP Server
(set this to whatever you want) - Command:
npx -y @modelcontextprotocol/server-github
- Environment Variables
- Name:
GITHUB_PERSONAL_ACCESS_TOKEN
- Value: (Obtain a GitHub Personal Access Token and paste it in.)
info
When creating your access token, you can specify the repositories and granular permissions you'd like Goose to have access to.
- Click
Add
button
- Name:
- Type:
- Click
Add Extension
button
Example Usage
When creating my GitHub Personal Access Token, I gave it the following access:
- Repository: goose-demo
- Read access to metadata
- Read and Write access to code, commit status, issues, and pull requests
Goose Prompt
create a new branch called hello-world in my angiejones/goose-demo repository. Update the README.md file to say "this was written by goose" and commit it. Open a pull request with your changes.
Goose Output
I'll help you create a new branch, update the README, and open a pull request. Let me break this down into steps:
1. First, let's create the new branch called "hello-world" in your repository
2. Then update the README.md file
3. Finally, create a pull request
Let me execute these steps:
1. Creating the new branch:
─── create_branch | github ──────────────────────────
branch: hello-world
owner: angiejones
repo: goose-demo
2. Now, updating the README.md file in the new branch:
─── create_or_update_file | github ──────────────────────────
branch: hello-world
content: this was written by goose
message: Update README.md with Goose message
owner: angiejones
path: README.md
repo: goose-demo
3. Finally, creating the pull request:
─── create_pull_request | github ──────────────────────────
base: main
body: ...
head: hello-world
owner: angiejones
repo: goose-demo
title: Update README.md
Great! I've completed all the requested tasks:
1. Created a new branch called "hello-world"
2. Updated the README.md file with the text "this was written by goose"
3. Created a pull request to merge these changes into the main branch
You can view the pull request at: https://github.com/angiejones/goose-demo/pull/1
The pull request is now ready for your review. Would you like me to do anything else with it?