/ Directory / Playground / Anthropic Quickstarts
● Official anthropics ⚡ Instant

Anthropic Quickstarts

by anthropics · anthropics/anthropic-quickstarts

Fork-and-run quickstart templates from Anthropic — agents, computer use, customer support, financial assistant — production-shaped scaffolds.

anthropics/anthropic-quickstarts contains runnable templates for common Claude-powered apps: a customer-support agent, a financial data assistant, computer use demo, and an agents framework starter. Each is intended to be forked and customized, not deeply read. Treated as a skill resource, it gives Claude pattern-matching examples to inform implementations.

Why use it

Key features

Live Demo

What it looks like in practice

ready

Install

Pick your client

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "anthropic-quickstarts-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/anthropics/anthropic-quickstarts",
        "~/.claude/skills/anthropic-quickstarts"
      ],
      "_inferred": true
    }
  }
}

Open Claude Desktop → Settings → Developer → Edit Config. Restart after saving.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "anthropic-quickstarts-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/anthropics/anthropic-quickstarts",
        "~/.claude/skills/anthropic-quickstarts"
      ],
      "_inferred": true
    }
  }
}

Cursor uses the same mcpServers schema as Claude Desktop. Project config wins over global.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "anthropic-quickstarts-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/anthropics/anthropic-quickstarts",
        "~/.claude/skills/anthropic-quickstarts"
      ],
      "_inferred": true
    }
  }
}

Click the MCP Servers icon in the Cline sidebar, then "Edit Configuration".

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "anthropic-quickstarts-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/anthropics/anthropic-quickstarts",
        "~/.claude/skills/anthropic-quickstarts"
      ],
      "_inferred": true
    }
  }
}

Same shape as Claude Desktop. Restart Windsurf to pick up changes.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "anthropic-quickstarts-skill",
      "command": "git",
      "args": [
        "clone",
        "https://github.com/anthropics/anthropic-quickstarts",
        "~/.claude/skills/anthropic-quickstarts"
      ]
    }
  ]
}

Continue uses an array of server objects rather than a map.

~/.config/zed/settings.json
{
  "context_servers": {
    "anthropic-quickstarts-skill": {
      "command": {
        "path": "git",
        "args": [
          "clone",
          "https://github.com/anthropics/anthropic-quickstarts",
          "~/.claude/skills/anthropic-quickstarts"
        ]
      }
    }
  }
}

Add to context_servers. Zed hot-reloads on save.

claude mcp add anthropic-quickstarts-skill -- git clone https://github.com/anthropics/anthropic-quickstarts ~/.claude/skills/anthropic-quickstarts

One-liner. Verify with claude mcp list. Remove with claude mcp remove.

Use Cases

Real-world ways to use Anthropic Quickstarts

Fork the customer-support quickstart for your business

👤 Founders/product devs building support automation ⏱ ~240 min intermediate

When to use: You want a working baseline before customizing.

Prerequisites
  • Anthropic API key — Get from console.anthropic.com
Flow
  1. Fork and configure
    Use anthropic-quickstarts. Walk me through forking the customer-support template for my company's KB.✓ Copied
    → Repo forked, KB plugged in
  2. Replace the data sources
    Swap mock KB with my Notion/Helpscout export. Test against 10 real tickets.✓ Copied
    → Replies grounded in your KB
  3. Wire to actual support tool
    Now connect to Zendesk/Intercom for live use.✓ Copied
    → Tickets actually drafting

Outcome: Production-shaped support agent, days not weeks.

Use the agents framework quickstart as your starting point

👤 Devs about to build a custom agent ⏱ ~90 min intermediate

When to use: You want SDK-blessed scaffolding, not a wild fork from Reddit.

Flow
  1. Lift the scaffold
    Show me the agents quickstart skeleton. Strip to the minimum viable.✓ Copied
    → Minimum scaffold to fork
  2. Add your domain
    Add tools: lookup_user, refund_order, send_email.✓ Copied
    → Domain-specific agent

Outcome: Custom agent built on official patterns.

Set up the computer use demo to evaluate fit for your task

👤 Teams considering computer-use for an internal workflow ⏱ ~60 min advanced

When to use: You want to know if computer use is real for your task.

Prerequisites
  • Docker — Required to run computer-use sandbox
Flow
  1. Run the demo
    Walk me through running the computer-use container.✓ Copied
    → Container running; demo browser visible
  2. Test on my workflow
    Have it complete a real task from our SOP.✓ Copied
    → Task attempted with screenshots

Outcome: Empirical answer on whether computer use solves your task.

Pitfalls
  • Computer use is slower and more brittle than tool calling — Try direct API tools first; fall back to computer use only when no API exists

Combinations

Pair with other MCPs for X10 leverage

anthropic-quickstarts-skill + anthropic-cookbook-skill

Quickstart for shape; cookbook for techniques

Use the support quickstart skeleton, then add cookbook recipes for caching and retries.✓ Copied
anthropic-quickstarts-skill + anthropic-courses-skill

Quickstart code + course explanation

Run the agents quickstart; whenever something's unclear, look up the relevant course chapter.✓ Copied

Tools

What this MCP exposes

ToolInputsWhen to callCost
(quickstart templates) fork point Starting a new app 0

Cost & Limits

What this costs to run

API quota
Quickstarts call the API — your usage charges apply
Tokens per call
Variable per quickstart
Monetary
Free templates; pay per Claude API call when running
Tip
Use Sonnet not Opus during development

Security

Permissions, secrets, blast radius

Minimum scopes: anthropic-api-key
Credential storage: ANTHROPIC_API_KEY in env
Data egress: Whatever the quickstart calls (Anthropic API + your KB)

Troubleshooting

Common errors and fixes

Outdated dependencies

Quickstarts pin versions; bump cautiously and re-run tests

Computer use container fails to start

Memory requirement is high; allocate >= 4GB to Docker

Alternatives

Anthropic Quickstarts vs others

AlternativeWhen to use it insteadTradeoff
anthropics/anthropic-cookbookYou want recipes, not whole appsRecipe-grain vs app-grain
wshobson/agentsYou want subagents inside Claude Code, not standalone appsDifferent runtime target

More

Resources

📖 Read the official README on GitHub

🐙 Browse open issues

🔍 Browse all 400+ MCP servers and Skills