Claude is the provider with the broadest native capability coverage, including server-side deployments and multi-agent coordination.
providers:
claude:
api_key: ${ANTHROPIC_API_KEY}
beta: "..." # optional; sent as the anthropic-beta header| Field | Required | Description |
|---|---|---|
api_key |
yes | Anthropic API key. Resolve from .env with ${ANTHROPIC_API_KEY}. |
beta |
no | Optional beta header value. |
| Feature | Tier |
|---|---|
| Environment, Vault, Skill, Agent, MCP Server, Multi-Agent, Deployment, Session | native |
| Memory Store | unsupported |
Use a skill or MCP for context persistence where Claude has no memory store.
version: "1"
providers:
claude:
api_key: ${ANTHROPIC_API_KEY}
defaults:
provider: claude
environments:
dev:
config:
type: cloud
networking:
type: unrestricted
agents:
assistant:
description: "General-purpose coding assistant"
model: claude-sonnet-4-6
instructions: |
You are a helpful coding assistant.
environment: dev
tools:
builtin: [read, glob, grep, web_search, web_fetch]- Multi-agent — declare a
coordinatoragent that orchestrates others. Seeexamples/claude/multiagent/. - Native deployments — scheduled server-side with outcome rubrics. See Manage deployments and
examples/claude/deployment/.
- Use skills
- Use MCP and vaults
- Full Claude config:
examples/claude/full/