Skip to content

Latest commit

 

History

History
67 lines (50 loc) · 1.78 KB

File metadata and controls

67 lines (50 loc) · 1.78 KB

Deploy to Claude

Claude is the provider with the broadest native capability coverage, including server-side deployments and multi-agent coordination.

Provider configuration

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.

Capabilities

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.

Minimal agent

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]

What Claude uniquely supports

Next steps