Griptape MCP Server

1

Add it to Claude Code

Run this in a terminal.

Run in terminal
claude mcp add griptape-mcp -- docker run -i --rm griptape-mcp
README.md

Stop letting your AI guess at Griptape APIs. Give it the actual docs.

griptape-mcp

Stop letting your AI guess at Griptape APIs.
Give it the actual docs.

Your AI keeps hallucinating Griptape method names. You ask it to build an Agent, it writes confident code that doesn't exist. You paste the error. It apologizes and writes different wrong code.

griptape-mcp fixes this. It ships the entire Griptape documentation — 84 framework pages, 125 nodes, 714 real code examples — as a pre-built SQLite database your AI can actually search. No hallucinations. No outdated training data. No API keys.

Install it once. Your AI figures out the rest.

What's inside the box

📚 84 framework pages Agents, Pipelines, Workflows, Tools, Drivers, Engines, RAG, and more
🧩 125 visual nodes Every node in Griptape Nodes across 17 categories
🔍 Full-text search SQLite FTS5 — fast, typo-tolerant, ranked by relevance
💻 714 code examples Real, working snippets pulled straight from the official docs
📦 Ships ready to go Pre-built database included. No network calls, no API keys, no scraping at query time.

What it looks like

Once connected, your AI uses the tools automatically. No prompting required.

You: How do I add conversation memory to an Agent?

Claude: (calls search_docs("conversation memory")) Found it. Here's the pattern:

from griptape.structures import Agent
from griptape.memory.structure import ConversationMemory

agent = Agent(conversation_memory=ConversationMemory())

No guessing. No hallucinated imports. Just the actual docs.


Get running in 60 seconds

Step 1 — Install

pip install griptape-mcp

Step 2 — Connect your client

Claude Desktop

Add to your config file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "griptape-docs": {
      "command": "griptape-mcp"
    }
  }
}

Restart Claude Desktop. Look for the 🔨 icon — that means tools are loaded.

Claude Code (one command)
claude mcp add griptape-docs griptape-mcp

Done. That's genuinely it.

Or add manually to your MCP settings:

{
  "mcpServers": {
    "griptape-docs": {
      "command": "griptape-mcp"
    }
  }
}
Docker
docker build -t griptape-mcp .
{
  "mcpServers": {
    "griptape-docs": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "griptape-mcp"]
    }
  }
}

Step 3 — Ask anything

"How do I create a Griptape Agent with custom tools?"

"What's the difference between a Pipeline and a Workflow?"

"Show me a RAG pipeline example in Griptape"

"What image processing nodes does Griptape Nodes have?"

"Find me code examples for conversation memory"


What your AI can look up

Six tools your AI assistant can call, all read-only and fast:

Tool What it does
search_docs Full-text search across all Griptape documentation. Filter by "framework", "nodes", or "all".
get_page Pull the complete content of any doc page by URL or title. Includes sections and code blocks.
search_griptape_nodes Find nodes by name, description, or category. Returns descriptions and doc links.
get_node_details Deep dive on a single node — full description, config, and code examples.
list_categories Browse what's available: 8 framework sections + 17 node categories with counts.
get_code_examples Search for working code snippets by topic. Great for "show me how to..." questions.

How it works

The architecture is intentionally boring — a SQLite file shipped inside the pip package, opened read-only at query time. No n

Tools (6)

search_docsFull-text search across all Griptape documentation.
get_pagePull the complete content of any doc page by URL or title.
search_griptape_nodesFind nodes by name, description, or category.
get_node_detailsDeep dive on a single node including description, config, and code examples.
list_categoriesBrowse available framework sections and node categories.
get_code_examplesSearch for working code snippets by topic.

Configuration

claude_desktop_config.json
{"mcpServers": {"griptape-docs": {"command": "griptape-mcp"}}}

Try it

How do I create a Griptape Agent with custom tools?
What's the difference between a Pipeline and a Workflow?
Show me a RAG pipeline example in Griptape
What image processing nodes does Griptape Nodes have?
Find me code examples for conversation memory

Frequently Asked Questions

What are the key features of Griptape MCP?

Access to 84 framework pages including Agents, Pipelines, and RAG. Searchable database of 125 visual nodes across 17 categories. Full-text search using SQLite FTS5 for fast, relevant results. Includes 714 real, working code examples from official docs. Local-only operation with no network calls or API keys required.

What can I use Griptape MCP for?

Eliminating AI hallucinations when writing Griptape-specific code. Quickly looking up node configurations and parameters during development. Generating accurate boilerplate code for Griptape agents and workflows. Learning Griptape framework patterns through verified code snippets.

How do I install Griptape MCP?

Install Griptape MCP by running: pip install griptape-mcp

What MCP clients work with Griptape MCP?

Griptape MCP works with any MCP-compatible client including Claude Desktop, Claude Code, Cursor, and other editors with MCP support.

Turn this server into reusable context

Keep Griptape MCP docs, env vars, and workflow notes in Conare so your agent carries them across sessions.

Need the old visual installer? Open Conare IDE.
Open Conare