Using Extensions
Extensions are add-ons that provide a way to extend the functionality of Goose by connecting with applications and tools you already use in your workflow. These extensions can be used to add new features, access data and resources, or integrate with other systems.
Extensions are based on the Model Context Protocol (MCP), so you can connect Goose to a wide ecosystem of capabilities.
Built-in Extensions
Out of the box, Goose is installed with a few extensions but with only the Developer
extension enabled by default.
Here are the built-in extensions:
- Developer: provides a set of general development tools that are useful for software development.
- Computer Controller: provides general computer control tools for webscraping, file caching, and automations.
- Memory: teaches goose to remember your preferences as you use it
- JetBrains: provides an integration for working with JetBrains IDEs.
- Google Drive: provides an integration for working with Google Drive for file management and access.
Toggling Built-in Extensions
- Goose CLI
- Goose Desktop
If you know the exact name of the extension you'd like to add, run:
goose mcp {name}
To navigate through available extensions:
- Run the following command:
goose configure
- Select
Add Extension
from the menu. - Choose the type of extension you’d like to add:
Built-In Extension
: Use an extension that comes pre-installed with Goose.Command-Line Extension
: Add a local command or script to run as an extension.Remote Extension
: Connect to a remote system via SSE (Server-Sent Events).
- Follow the prompts based on the type of extension you selected.
Example: Adding Built-in Extension
To select an option during configuration, hover over it and press Enter.
┌ goose-configure
│
◇ What would you like to configure?
│ Add Extension
│
◇ What type of extension would you like to add?
│ Built-in Extension
│
◆ Which built-in extension would you like to enable?
│ ○ Developer Tools
│ ○ Computer Controller (controls for webscraping, file caching, and automations)
│ ○ Google Drive
│ ○ Memory
│ ● JetBrains
└
- Click
...
in the top right corner of the Goose Desktop. - Select
Settings
from the menu. - Under
Extensions
, you can toggle the built-in extensions on or off.
All of Goose's built-in extensions are MCP servers in their own right. If you'd like to use the MCP servers included with Goose with any other agent, you are free to do so.
Discovering Extensions
Goose provides a central directory of extensions that you can install and use. The page will give you a test command to try out extensions before installing them.
Adding Extensions
Extensions can be installed directly via the extensions directory, CLI, or UI.
For advanced users, you can also edit the ~/.config/goose/config.yaml
file directly to add an extension.
- Goose CLI
- Goose Desktop
- Run the following command:
goose configure
- Select
Add Extension
from the menu. - Choose the type of extension you’d like to add:
Built-In Extension
: Use an extension that comes pre-installed with Goose.Command-Line Extension
: Add a local command or script to run as an extension.Remote Extension
: Connect to a remote system via SSE (Server-Sent Events).
- Follow the prompts based on the type of extension you selected.
Example of adding Command-Line Extension:
┌ 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?
│ fetch
│
◇ What command should be run?
│ uvx mcp-server-fetch
│
◇ Would you like to add environment variables?
│ No
│
└ Added fetch extension
- Click
...
in the top right corner of the Goose Desktop. - Select
Settings
from the menu. - Under
Extensions
, you can toggle the built-in extensions on or off.
MCP Servers
You can install any MCP server as a Goose extension.
- Goose CLI
- Goose Desktop
- Run
goose configure
- Choose
Add Extension
- Choose
Command-line Extension
You'll then be prompted to enter a command and any environment variables needed.
- Click
...
in the top right corner of the Goose Desktop. - Select
Settings
from the menu. - Under
Extensions
, you can add a MCP server as an extension manually by clicking on the (+) button to the right. - In the dialog that appears, enter the details of the MCP server including any environment variables needed.
For example, to connect to the Fetch Server, enter uvx mcp-server-fetch
as the command.
You can also directly edit the resulting config entry (~/.config/goose/config.yaml
), which would look like this:
extensions:
fetch:
name: fetch
cmd: uvx
args: [mcp-server-fetch]
enabled: true
envs: {}
type: stdio
Enabling/Disabling Extensions
You can enable or disable installed extensions based on your workflow needs.
- Goose CLI
- Goose Desktop
- Run the following command to open up Goose's configurations:
goose configure
- Select
Toggle Extensions
from the menu. - A list of already installed extensions will populate.
- Press the
space bar
to toggle the extension. Solid means enabled.
Example:
┌ goose-configure
│
◇ What would you like to configure?
│ Toggle Extensions
│
◆ enable extensions: (use "space" to toggle and "enter" to submit)
│ ◼ developer
│ ◻ fetch
└
- Click the three dots in the top-right corner of the application.
- Select
Settings
from the menu, then click on theExtensions
section. - Use the toggle switch next to each extension to enable or disable it.
Removing Extensions
You can remove installed extensions.
- Config file
- Goose Desktop
To remove extensions, open ~/.config/goose/config.yaml
and delete the extensions.
- Click
...
in the top right corner of the Goose Desktop. - Select
Settings
from the menu. - Under
Extensions
, find the extension you'd like to remove and click on the settings icon beside it. - In the dialog that appears, click
Remove Extension
.
Starting a Session with Extensions
You can start a tailored goose session with specific extensions directly from the CLI. To do this, run the following command:
goose session --with-extension "{extension command}"
You may need to set necessary environment variables for the extension to work correctly.
goose session --with-extension "VAR=value command arg1 arg2"
Developing Extensions
Goose extensions are implemented with MCP, a standard protocol that allows AI models and agents to securely connect with local or remote resources. Learn how to build your own extension as an MCP server.