cocoon
An MCP server that provides a single tool for discovering, auto-installing, sandboxing, and calling any API from the printing-press corpus. It enables agents to seamlessly find and execute API operations without per-API setup.
README
cocoon
One MCP tool (and matching CLI) that lets an agent discover, auto-install, sandbox, and call any API in the printing-press corpus — without per-API install steps, without per-API MCP server fan-out.
The agent-facing protocol is documented in skill/SKILL.md. This repo holds both the runtime and the skill that ships with it.
What it does
Register cocoon once with your MCP host. The agent then sees a single tool, cocoon(action, ...), that multiplexes four operations:
cocoon(action="find", query="create a linear issue")
cocoon(action="describe", api="linear", tool="issues.create")
cocoon(action="call", api="linear", tool="issues.create",
args={"title": "x", "team_id": "y"})
cocoon(action="list", filter="payments")
On first call for any API, cocoon downloads the per-platform prebuilt <api>-pp-cli binary from printing-press-library's GitHub release (tag <api>-current), caches it under ~/.cache/cocoon/bin/<api>/, and executes it in a per-call sandbox (bubblewrap on Linux, Seatbelt on macOS) with only that API's credentials scoped into the environment. The agent never takes a separate install step.
The CLI mirrors the same operations as subcommands for terminal use:
cocoon find "create a linear issue"
cocoon describe linear issues.create
cocoon call linear issues.create --arg title=x --arg team_id=y
cocoon list --filter payments
Install
# `cocoon-mcp` is the PyPI distribution name; `cocoon` is the installed CLI.
uvx --from cocoon-mcp cocoon init # register via `claude mcp add`
uvx --from cocoon-mcp cocoon doctor # check sandbox + catalog state
uvx --from cocoon-mcp cocoon auth linear --token lin_… # write per-API credentials
For a local install pointing at a checkout instead of PyPI:
cocoon init --command "$(which cocoon) serve"
# or, running from the repo:
cocoon init --command "uv run --directory /path/to/cocoon cocoon serve"
cocoon init shells out to claude mcp add cocoon --scope user, which writes the user-scope entry to ~/.claude.json. (Older ~/.claude/mcp.json is not read by modern Claude Code.) For other MCP hosts, use cocoon init --print to get both a shell command and a JSON snippet.
Requirements: Python 3.11+, network access to GitHub Releases (cocoon downloads <api>-pp-cli binaries on first use), and bubblewrap (Linux) or sandbox-exec (built-in macOS) for execution sandboxing. cocoon init additionally needs the claude CLI on PATH. No Go toolchain required — prebuilt binaries are downloaded directly from upstream's release artifacts.
Bash-fallback mode
If the MCP cocoon tool is unavailable for any reason (host-side misregistration, server restart-in-progress, hermes terminal-only mode), the agent can fall back to invoking the cocoon CLI directly via its terminal tool. Set COCOON_AGENT_MODE=1 in the subprocess env to get structured JSON on stdout and stderr instead of human-formatted text — including argparse-level errors as {"error": "invalid_arguments", ...} rather than free-text "the following arguments are required". The agent can branch on stable error codes instead of grepping stderr.
Layout
src/cocoon/
server.py MCP server: one `cocoon` tool dispatching on action
cli.py cocoon {serve, init, auth, doctor, catalog, find, describe, call, list}
catalog.py catalog fetch, BM25 search, list/describe, auth_type lookup
search.py BM25 ranker (vendored, ~30 lines)
materialize.py download prebuilt `<api>-pp-cli` from GitHub Releases, cache under bin/
auth.py per-API JSON credential files at ~/.cache/cocoon/auth/
argv.py dict -> CLI argv translation (dotted tool names → cobra subcommands)
paths.py centralized cache-path resolution (no side effects)
errors.py structured error types matching the skill's failure modes
sandbox/
policy.py SandboxPolicy dataclass
linux.py bubblewrap execution
macos.py Seatbelt (sandbox-exec) execution
__init__.py platform dispatch + doctor probe
skill/
SKILL.md agent-facing protocol (what the model reads to learn cocoon)
sources.json upstream attributions for drift tracking
scripts/
e2e_smoke.py 4-scenario end-to-end test against the real installed CLI
tests/ unit tests; no external deps (catalog/auth/sandbox/argv/CLI)
Development
uv sync --extra dev
uv run pytest # ~90 unit tests
uv run python scripts/e2e_smoke.py # end-to-end against hackernews
The e2e script installs hackernews-pp-cli if missing (~20s on first run), then exercises the four scenarios: installed/direct, installed-via-discovery, uninstalled-via-discovery, uninstalled-via-direct-call.
Status
v0.4 candidate — single-tool MCP shape, seamless prebuilt-binary install (~2–3s cold-start vs the ~20s go install of v0.3), full CLI mirror, 145 unit tests, e2e proven end-to-end against real GitHub Release downloads. The bundled catalog covers ~96 APIs (harvested from each CLI's published tools-manifest.json); a daily GitHub Action keeps it fresh.
Outstanding:
- ~39 CLIs in the upstream library lack a
tools-manifest.json(hand-rolled CLIs without OpenAPI input). They're hidden fromfind/listvia the installability filter. A Phase-2 build path running<binary> agent-contextpost-install could backfill them. - Upstream doesn't publish
checksums.txtalongside release binaries (goreleaser is configured for it but the upload step is missing). cocoon relies on GitHub-HTTPS trust today; an upstream PR adding the checksum upload would let cocoon do sha256 verification. cocoon prefetchsubcommand + activity-mining for warm caches before the agent asks — postmortem P2.- Calibrated
COCOON_FIND_MIN_SCOREfloor once we have real query logs. - Egress allowlist via outbound proxy (Claude Code pattern) — v1.1.
- Bring-your-own-OpenAPI-spec registration — v1.1 with codegen sandboxing.
- The
npx -y @mvanhorn/printing-press installshortcut is upstream-broken (registry validation fails on a malformed entry); not relevant for cocoon anymore since we don't shell out to npx orgo install.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。