The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Zoo MCP listing page.
An MCP server housing various Zoo built utilities
ZOO_API_TOKEN set to your API key
Install the package from GitHub
The server can be started by using uvx
The server can be started locally by using uv and the zoo_mcp module
The server can also be run with the mcp package
Each GitHub release also attaches standalone executables (built with PyInstaller) for Linux (x86_64, arm64), macOS (arm64, x86_64), and Windows (x86_64) — no Python toolchain required. Download the binary for your platform, set ZOO_API_TOKEN, and run it directly, e.g.:
The binaries are not code-signed, so macOS Gatekeeper and Windows SmartScreen may warn on first run.
The server can be used as is by running the server or importing directly into your python code.
Individual tools can be used in your own python code as well. At Zoo we use zoo-mcp like this with ZooKeeper to save on resources. Instead of spinning up one MCP server per agent, each agent in a sense "embeds" the server in their own runtime. It has the additional benefit of preventing shared state.
The server can be integrated with Claude desktop using the following command
The server can also be integrated with Claude Code using the following command
The server can also be tested using the MCP Inspector
For running with codex-cli
You can also use the helper script included in this repo:
The script prompts for a request, runs Codex with the Zoo MCP server, and saves a JSONL transcript (including token usage) to codex-run-<timestamp>.jsonl.
Tools are defined in src/zoo_mcp/*.py, where they are then imported into
src/zoo_mcp/server.py and tied to actual @mcp.tool() decorated functions.
src/zoo_mcp/zoo_tools.py acts as a large toolset to interact with Zoo's KCL and
engine facilities. This source file houses other utilities like parse_unit or
normalize_ext (normalizing file extensions).
Modeling scenes use explicit persistent sessions, with at most one session open
per server process. Call get_modeling_sessions to recover its ID after a client
reconnect, or call start_modeling_session when none exists. Populate the
session with execute_kcl, exec_kcl_project, or import_cad_file; pass the
same session_id to snapshot and modeling tools; then call
stop_modeling_session when finished.
As of 0.28.0, execute_kcl and exec_kcl_project run mock execution before real
execution and return separate mock_preflight and real_execution objects.
Each contains status (succeeded, failed, or not_run), message, and
diagnostics grouped by severity. Stage messages are short summaries; the
top-level message retains the full report for existing callers. Failed stages
also expose error_family, including ZooMCPTimeoutError for session timeouts.
Mock errors or an aborted mock execution
return immediately with ok: false and real_execution.status: "not_run".
Mock warnings remain in mock_preflight.diagnostics even if real execution fails.
The known planeOf mock-engine limitation is reported as a warning so the real
engine can evaluate it; other mock errors still block execution.
Session responses expose mock diagnostics; the engine does not return real-stage
diagnostics for session execution.
Path inputs capture the entrypoint, its transitive imports (including linked
modules and glTF buffers), and project.toml once. Both stages use that copy
without scanning unrelated files in the containing directory. Dependencies and
symlink targets must stay inside the entrypoint's directory; external paths are
rejected before file reads or execution. Transient local real-execution failures
retain their bounded retries using the same copy without repeating mock execution.
Diagnostics refer to the original source paths. Inline kcl_code accepts
self-contained code and standard-library imports; filesystem imports require
kcl_path so their dependencies can be captured within an explicit directory.
exec_kcl_project now returns
this structured result instead of a path string: check ok, then read
path_artifact_graph on session success. The standalone mock_execute_kcl tool
continues to return its existing boolean/message pair.
Contributions are welcome! Please open an issue or submit a pull request on the GitHub repository
PRs will need to pass tests and linting before being merged.
The server includes tests located in tests. To run the tests, use the following command: