Playbook MCP tools
Use this reference to find a tool and its inputs. Connect an MCP client before calling tools. Tool visibility depends on discovery and permissions.
For actions that send messages, spend credits, delete data, or start execution, review the intended records and confirm the action before proceeding. Obtain IDs from a prior result; do not invent them. A registered tool does not guarantee that its supporting service is available in every organization.
g8_list_playbooks
List available graph8 playbooks - prescriptive workflow guides. Each playbook is a markdown doc covering a specific user journey (prospecting, running a campaign, installing tracking, handling inbox replies). Returns a catalog with slug, title, summary, and when_to_use; use when_to_use to decide which playbook to load, then call g8_load_playbook(slug) for the full content. Distinct from the
g8_skill_*/g8_workflow_skill_*tool family (those author skill records that workflows execute; playbooks are docs for the agent to read).
Inputs
| Input | Required | Type | Description |
|---|---|---|---|
| None | No | — | No user-supplied inputs. |
Complete input schema
{ "properties": {}, "title": "g8_list_playbooksArguments", "type": "object"}g8_load_playbook
Load the full markdown content of a graph8 playbook by slug. Use after g8_list_playbooks when the user’s task matches a playbook’s when_to_use. The content is prescriptive - follow the tool sequencing and confirmations it describes. Args: slug: Playbook slug from g8_list_playbooks (e.g. “prospecting-and-lists”).
Inputs
| Input | Required | Type | Description |
|---|---|---|---|
slug | Yes | string | See the schema below for constraints and defaults. |
Complete input schema
{ "properties": { "slug": { "title": "Slug", "type": "string" } }, "required": [ "slug" ], "title": "g8_load_playbookArguments", "type": "object"}