Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"zoogent": {
"env": {
"ZOOGENT_URL": "https://your-domain.com",
"ZOOGENT_API_KEY": "zg_your-key-from-settings"
},
"args": [
"zoogent",
"mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Lightweight AI agent orchestrator with built-in Architect AI. Multi-team support - run isolated agent teams in a single instance. Describe what you want to automate, get working agents.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'zoogent' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked zoogent against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml
Dynamic problem-solving through sequential thought chains
Persistent memory using a knowledge graph
An autonomous agent that conducts deep research on any data using any LLM providers
🌊 The leading agent orchestration platform for Claude. Deploy intelligent multi-agent swarms, coordinate autonomous workflows, and build conversational AI systems. Features enterprise-grade architecture, distributed swarm intelligence, RAG integration, and native Claude Code / Codex Integration
MCP Security Weekly
Get CVE alerts and security updates for io.github.bepunk/zoogent and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Lightweight AI agent orchestrator with built-in Architect AI. Multi-team support - run isolated agent teams in a single instance. Describe what you want to automate, get working agents.
npx zoogent create my-agents
cd my-agents
npx zoogent start
Open http://localhost:3200. Create account > create team > add Anthropic API key in Team Settings > go to Architect and describe what you want to automate.
ZooGent is a process manager for AI agent teams. It spawns agents, routes tasks between them, tracks costs, and captures logs. Each agent is a standalone script that calls its own LLM.
Multi-team isolation - one instance, multiple teams. Each team has its own agents, skills, memory, knowledge, Architect chat, and API keys. Teams don't see each other's data.
Two ways to use it:
Chat UI - open the Architect page in your browser, describe your task in plain language. The Architect AI designs the team, creates skills, writes agent code, and tests everything.
Claude Code + MCP - connect MCP to Claude Code, build agents from the terminal with full control over code and configuration.
Both paths use the same API, same database, same agents. Pick whichever fits your workflow.
npx zoogent create my-agents
cd my-agents
npx zoogent start
Architect designs agents, writes skills, generates code, and tests everything through conversation.
npx zoogent create my-agents
cd my-agents
npx zoogent start -d
Set BETTER_AUTH_URL to your public URL in .env. Use a reverse proxy (nginx, Caddy) or deploy via Docker (see Deployment section). The web UI is the same - just accessed remotely.
Start the server locally, then connect Claude Code via MCP:
npx zoogent create my-agents
cd my-agents
npx zoogent start -d
Add the MCP server to Claude Code. Run this from inside the project you want to work in — each project typically binds to its own ZooGent instance (its own SQLite, teams, agents, API keys), so the MCP config should live with the project:
claude mcp add zoogent -s project -- npx zoogent mcp
-s project writes the config to .mcp.json in the project root — commit it and teammates who clone the repo get the same MCP setup automatically.
Claude Code auto-discovers the local server. Ask Claude to create a team and design your agents.
Deploy ZooGent to a server (see Deployment). Open the web UI, create an account, go to Settings > generate an API key.
Run from inside the project that should connect to this ZooGent instance:
claude mcp add zoogent -s project \
-e ZOOGENT_URL=https://your-domain.com \
-e ZOOGENT_API_KEY=zg_your-key-from-settings \
-- npx zoogent mcp
Each project can point at its own ZooGent (local or remote), with its own URL and API key. Keeping the config in the project's
.mcp.jsonmakes that mapping explicit. Use-s userinstead only if you have a single shared ZooGent instance across all projects.
{
"mcpServers": {
"zoogent": {
"command": "npx",
"args": ["zoogent", "mcp"],
"env": {
"ZOOGENT_URL": "https://your-domain.com",
"ZOOGENT_API_KEY": "zg_your-key-from-settings"
}
}
}
}
Claude Code connects to the remote server. Create teams, design agents, write code - all through MCP tools. Agents run on the server.