@agent.ceo/mcp
v1.0.1
Published
MCP server that connects your coding agent to your agent.ceo organization
Downloads
76
Readme
@agent.ceo/mcp
MCP server that connects your coding agent (Claude Code, Cursor, Windsurf) to your agent.ceo organization.
Quick Start
Claude Code
Add to your .claude/settings.json:
{
"mcpServers": {
"agent-ceo": {
"command": "npx",
"args": ["-y", "@agent.ceo/mcp@latest"],
"env": {
"AGENT_CEO_ORG_ID": "your-org-id",
"AGENT_CEO_API_KEY": "your-api-key"
}
}
}
}Cursor
Add to your .cursor/mcp.json:
{
"mcpServers": {
"agent-ceo": {
"command": "npx",
"args": ["-y", "@agent.ceo/mcp@latest"],
"env": {
"AGENT_CEO_ORG_ID": "your-org-id",
"AGENT_CEO_API_KEY": "your-api-key"
}
}
}
}Get your Org ID and API Key from your agent.ceo dashboard.
Environment Variables
| Variable | Required | Description |
|----------|----------|-------------|
| AGENT_CEO_ORG_ID | Yes | Organization UUID from dashboard |
| AGENT_CEO_API_KEY | Yes | API key from dashboard settings |
| AGENT_CEO_API_URL | No | API base URL (default: https://api.agent.ceo) |
| AGENT_CEO_LOG_LEVEL | No | debug, info, warn, error (default: warn) |
Available Tools
Once connected, your coding agent gains access to 16 tools:
Organization — create_organization, list_organizations, get_organization_status, terminate_organization
Agent Management — add_agent_to_organization, remove_agent_from_organization, pause_agent, resume_agent
Discovery — discover_agents, list_designed_agents
Tasks — get_task_status
Extensions — add_extension_to_agent, remove_extension_from_agent, list_agent_extensions
Operations — retry_failed_queue_items, get_sla_metrics
How It Works
Your IDE <--STDIO--> @agent.ceo/mcp <--HTTPS--> agent.ceo APIThe package runs as a local MCP server over STDIO. It fetches available tools from the agent.ceo API on startup, then proxies every tool call through the API to your organization's conductor.
Requirements
- Node.js >= 18.0.0
- An agent.ceo organization with API access
License
MIT
