mirror of
https://github.com/aljazceru/goose.git
synced 2026-01-03 22:44:23 +01:00
1.4 KiB
1.4 KiB
Goose Extension Allowlist
The allowlist feature provides a security mechanism for controlling which MCP commands can be used by goose. By default, goose will let you run any MCP via any command, which isn't always desired.
How It Works
- When enabled, Goose will only allow execution of commands that match entries in the allowlist
- Commands not in the allowlist will be rejected with an error message
- The allowlist is fetched from a URL specified by the
GOOSE_ALLOWLISTenvironment variable and cached while running.
Setup
Set the GOOSE_ALLOWLIST environment variable to the URL of your allowlist YAML file:
export GOOSE_ALLOWLIST=https://example.com/goose-allowlist.yaml
If this environment variable is not set, no allowlist restrictions will be applied (all commands will be allowed).
Allowlist File Format
The allowlist file should be a YAML file with the following structure:
extensions:
- id: extension-id-1
command: command-name-1
- id: extension-id-2
command: command-name-2
Example:
extensions:
- id: slack
command: uvx mcp_slack
- id: github
command: uvx mcp_github
- id: jira
command: uvx mcp_jira
Note that the command should be the full command to launch the MCP (environment variables are provided for context by goose). Additional arguments will be rejected (to avoid injection attacks)