documentation/docs/mcp/summon-mcp.md
import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; import { PlatformExtensionNote } from '@site/src/components/PlatformExtensionNote'; import GooseBuiltinInstaller from '@site/src/components/GooseBuiltinInstaller';
The Summon extension lets you load reusable task sources into goose's context and delegate work to subagents.
You can load different types of sources:
This is useful when you want goose to reuse a task definition, hand work to another agent, or run read-only research in parallel. Skills are loaded by the separate Skills platform extension.
:::info This extension is available in v1.25.0+. :::
configure command:goose configure
Toggle Extensions┌ goose-configure
│
◇ What would you like to configure?
│ Toggle Extensions
│
◆ Enable extensions: (use "space" to toggle and "enter" to submit)
// highlight-start
│ ● summon
// highlight-end
└ Extension settings updated successfully
In this example, we'll create a reusable recipe and use Summon to delegate it to a subagent.
title: Release Notes
description: Draft release notes from recent git changes
instructions: |
Review the recent git history and changed files.
Write concise release notes with:
- user-facing changes
- fixes
- migration notes, if any
prompt: Draft release notes for the current branch.
Use summon to delegate the release-notes recipe for this branch.
─── delegate | summon ───────────────────────────────────────
source: release-notes
The release-notes subagent reviewed the branch and drafted release notes:
## User-facing changes
- Added support for configuring project-specific extensions.
- Improved error messages when extension startup fails.
## Fixes
- Fixed stale extension state after disabling an extension.
Ask goose to use Summon in natural language, or call the tools directly:
load()
load(source: "release-notes")
delegate(source: "release-notes")
delegate(instructions: "Review these docs and report stale links")
delegate(source: "release-notes", async: true)
load(source: "20260219_1", peek: true)
load(source: "20260219_1")
Calling load() with no arguments lists available sources. For background tasks, delegate(..., async: true) returns a task id, and load(source: "<task_id>") waits for the result.