One-line setup for Oz, a version-aware documentation MCP server for coding agents.
npx tryoz setupOz gives agents a repeatable workflow for external library, SDK, framework, API, and package questions:
- Resolve the exact library ID.
- Fetch version-aware docs and code examples.
- Use exact API symbols, routes, env vars, config keys, and CLI flags from the returned context.
- Fall back to Context7, official docs, source repositories, or web search only when Oz does not have enough coverage.
Without a documentation MCP, coding agents often answer from old training data, guess APIs, or mix docs from the wrong major version.
With Oz, your agent can ask for the current indexed documentation at the moment it needs context.
User: Add Next.js middleware auth for v15.
Agent: resolve-library-id -> /vercel/next.js
Agent: get-library-docs -> version v15, topic middleware auth
Agent: answers from retrieved docs instead of guessing.npx tryoz setup is interactive by default:
The setup wizard:
- Detects installed coding agents.
- Shows a checkbox list with detected agents selected by default.
- Asks for scope: Global (recommended) or Project.
- Asks for an Oz API key. Keys must start with
oz-. - Shows the exact files and commands that will change.
- Installs the Oz MCP config.
- Installs the Oz skill or the best available rule fallback.
- Verifies the MCP server with
tools/list.
No login flow. No broad hidden patching. Use --all when you want to configure every supported agent.
| Agent | Global | Project | Skill or policy |
|---|---|---|---|
| Codex CLI / Codex IDE | Yes | Yes | Codex skill + AGENTS.md for project scope |
| Claude Code | Yes | Yes | Claude skill + CLAUDE.md for project scope |
| Cursor | Yes | Yes | Cursor rule |
| VS Code / GitHub Copilot | Yes | Yes | Copilot instructions for project scope |
| Cline | Yes | Yes | MCP config + AGENTS.md for project scope |
| Windsurf | Yes | Yes | Windsurf rules |
| OpenCode | Yes | Yes | OpenCode config + policy |
| GitHub Copilot CLI | Yes | Yes | MCP config |
| GitHub Copilot Coding Agent | Project | Yes | Repository MCP config |
| Grok Build | Yes | Yes | Claude-compatible project policy |
| Gemini CLI | Policy | Policy | GEMINI.md policy |
# Interactive setup
oz setup
npx tryoz setup
# Non-interactive setup
npx tryoz setup --codex --claude --global --api-key oz-your-key
npx tryoz setup --all --project --api-key oz-your-key
# Remove Oz-owned config only
oz logout
npx tryoz remove
npx tryoz logout
npx tryoz remove --codex --claude --global
# Verify the remote MCP endpoint
npx tryoz mcp test --api-key oz-your-key
# Inspect local agent config health
npx tryoz doctor --api-key oz-your-key
# List detected clients
npx tryoz list-agents
npx tryoz detectUse this endpoint for clients that you configure manually:
https://tryoz.dev/mcpPass your API key as a bearer token:
{
"mcpServers": {
"oz": {
"type": "http",
"url": "https://tryoz.dev/mcp",
"headers": {
"Authorization": "Bearer oz-your-key"
}
}
}
}The bundled Oz skill and policy tell agents:
Use Oz first for external libraries, SDKs, APIs, frameworks, and packages.
Workflow:
1. Call `resolve-library-id` to find the exact Oz library ID.
2. Call `get-library-docs` with the resolved library ID and the user's topic.
3. If the user asks for a version, pass the version explicitly.
4. Use the returned documentation as the source of truth.
5. If Oz has no matching library, lacks the requested version, or returns insufficient context, then fall back to Context7, official docs, source repositories, or web search.The full skill is packaged at templates/skills/oz/SKILL.md.
- Installation
- CLI reference
- Client setup guides
- Oz skill and policy
- Troubleshooting
- Telemetry
- Security
- Development
npm install
npm test
npm run pack:check
node bin/tryoz.js setup --dry-run --no-telemetryAnonymous CLI telemetry records only command name, selected client IDs, OS/platform, success/failure, and CLI version. It does not send prompts, file contents, API keys, or absolute repository paths.
Disable telemetry with:
npx tryoz setup --no-telemetryReport security issues privately. See SECURITY.md.
This repository contains the public Oz setup CLI, agent skills, rules, and docs. The hosted Oz indexing backend, crawler, vector store, and production dashboard are separate service components.
Oz indexes third-party documentation. Always validate critical changes against the upstream library or API owner when correctness or security matters.
MIT