t0ggles Crew supports three CLI providers for executing AI agent work.
The default provider. Uses Anthropic's Claude Code CLI.
Install: npm install -g @anthropic-ai/claude-code
Configure MCP:
claude mcp add --transport http t0ggles https://t0ggles.com/mcp \--header "Authorization: Bearer YOUR_MCP_TOKEN"
Supported models: Any Claude model available in your plan.
Uses OpenAI's Codex CLI.
Install: npm install -g @openai/codex
Configure MCP:
export T0GGLES_MCP_TOKEN="YOUR_MCP_TOKEN"codex mcp add t0ggles \--url https://t0ggles.com/mcp \--bearer-token-env-var T0GGLES_MCP_TOKEN
Supported models: Any model available in your OpenAI plan.
Uses the OpenCode CLI.
Install: npm install -g opencode-ai
Configure MCP: Add to your opencode.json:
{"mcp": {"t0ggles": {"type": "remote","url": "https://t0ggles.com/mcp","enabled": true,"headers": {"Authorization": "Bearer YOUR_MCP_TOKEN"}}}}
Supported models: Any model supported by OpenCode.
All providers need a t0ggles MCP token so agents can read tasks, update statuses, and post comments on your board during runs.
Generate one from your Account Settings under the MCP Tokens section. See the MCP Tokens documentation for details.