Skill library MCP tools
Esta página aún no está disponible en tu idioma.
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_library_get
Load one graph8 Skill Library skill - full SKILL.md content by slug. Use after g8_library_search to read a skill before installing it, or to follow its recipe directly in this session. To give the user install steps for their client, prefer g8_library_install_instructions. Args: slug: Skill slug from g8_library_search (e.g. “find-and-list-leads”).
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_library_getArguments", "type": "object"}g8_library_install_instructions
Install a graph8 Skill Library skill into the user’s AI client. Returns the full SKILL.md content plus exact save/install steps for the target client. MCP servers cannot write to the host filesystem, so surface these steps (and the content) to the user - or, if you are an agent with file access (e.g. Claude Code), perform the save step yourself after confirming with the user. Args: slug: Skill slug from g8_library_search. client: Target client - claude_code, claude_desktop, claude_ai, cursor, or other. Default claude_code.
Inputs
| Input | Required | Type | Description |
|---|---|---|---|
slug | Yes | string | See the schema below for constraints and defaults. |
client | No | string | See the schema below for constraints and defaults. |
Complete input schema
{ "properties": { "slug": { "title": "Slug", "type": "string" }, "client": { "default": "claude_code", "title": "Client", "type": "string" } }, "required": [ "slug" ], "title": "g8_library_install_instructionsArguments", "type": "object"}g8_library_search
Search the graph8 Skill Library - installable agent skills. The Skill Library is the public catalog of SKILL.md workflow recipes (prospecting, enrichment, outbound, inbox, signals, workflows, voice, calendar) that a USER installs into their own AI client. Use this when the user asks what graph8 skills exist, wants a ready-made workflow recipe, or asks how to automate a graph8 job in their agent. Distinct from playbooks (guides this agent reads in-session via g8_load_playbook) and from g8_skill_* (workflow Action-node records). Args: query: Free-text filter over name, description, category, outcome, and required tool names. Omit to list everything. category: Exact category filter - one of crm, enrichment, outbound, inbox, signals, workflows, voice, calendar. limit: Max results (default 20).
Inputs
| Input | Required | Type | Description |
|---|---|---|---|
query | No | string / null | See the schema below for constraints and defaults. |
category | No | string / null | See the schema below for constraints and defaults. |
limit | No | integer | See the schema below for constraints and defaults. |
Complete input schema
{ "properties": { "query": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Query" }, "category": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Category" }, "limit": { "default": 20, "title": "Limit", "type": "integer" } }, "title": "g8_library_searchArguments", "type": "object"}