griptape-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| GRIPTAPE_MCP_DB_PATH | No | Optional path to a local SQLite database for Griptape documentation. If not provided, the server uses the pre-built database shipped with the package. |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_docsA | Search across all Griptape documentation. Full-text search of the Griptape Framework docs and Griptape Nodes docs. Returns the top matching pages with title, URL, and a text snippet. Args: query: Search terms (e.g. "RAG pipeline", "Agent memory", "image node") source: Filter results - "framework", "nodes", or "all" (default) |
| get_pageA | Get the full content of a specific documentation page. Retrieves the complete text content and code examples for a page. You can pass either the full URL or a partial title to match. Args: url_or_title: Full URL (e.g. "https://docs.griptape.ai/stable/griptape-framework/structures/agents/") or partial title (e.g. "Agents") |
| search_griptape_nodesB | Search Griptape Nodes by name, description, or category. Griptape Nodes is a visual workflow builder with 120+ nodes for images, video, audio, text, agents, and more. Args: query: Search terms (e.g. "load image", "transcribe", "agent") category: Optional category filter (e.g. "Image", "Video", "Text", "Audio", "Agents", "Config") |
| get_node_detailsA | Get full documentation for a specific Griptape Node. Returns the complete description, configuration, inputs/outputs, and any code examples for the node. Args: node_name: Name of the node (e.g. "Load Image", "Create Agent", "Transcribe Audio") |
| list_categoriesA | List all Griptape Framework sections and Node categories. Shows the available documentation areas and how many pages/nodes are in each, so you know what to search for. |
| get_code_examplesA | Search for code examples related to a topic. Finds code snippets from the documentation that match your query. Useful for finding working examples of Griptape patterns. Args: topic: What you want examples of (e.g. "RAG pipeline", "custom tool", "workflow") |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 6 tools
Each tool has a distinct purpose: searching docs, searching nodes, getting examples, getting page content, getting node details, and listing categories. No significant overlap.
All tools use snake_case with a consistent verb_noun pattern (get, list, search), making the set predictable and easy to navigate.
6 tools are well-scoped for a documentation search server, covering browsing, searching, and retrieving details without being excessive or insufficient.
The set covers all major operations for the domain: listing categories, searching docs and nodes, retrieving page content, node details, and code examples. No obvious gaps.