/ 디렉터리 / 플레이그라운드 / Anthropic Quickstarts
● 공식 anthropics ⚡ 바로 사용

Anthropic Quickstarts

제작: anthropics · anthropics/anthropic-quickstarts

Anthropic의 포크-앤-런 퀵스타트 템플릿 — 에이전트, 컴퓨터 사용, 고객 지원, 금융 어시스턴트 — 프로덕션 형태의 스캐폴드.

anthropics/anthropic-quickstarts는 일반적인 Claude 기반 앱을 위한 실행 가능한 템플릿을 포함합니다: 고객 지원 에이전트, 금융 데이터 어시스턴트, 컴퓨터 사용 데모, 에이전트 프레임워크 스타터. 깊이 읽는 것이 아닌 포크하고 커스터마이즈하도록 설계되었습니다. 스킬 리소스로 취급하면 Claude에게 구현을 안내하는 패턴 매칭 예시를 제공합니다.

왜 쓰나요

핵심 기능

라이브 데모

실제 사용 모습

준비됨

설치

클라이언트 선택

~/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
    }
  }
}

Claude Desktop → Settings → Developer → Edit Config 열기. 저장 후 앱 재시작.

~/.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는 Claude Desktop과 동일한 mcpServers 스키마 사용. 프로젝트 설정이 전역보다 우선.

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
    }
  }
}

Cline 사이드바의 MCP Servers 아이콘 클릭 후 "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
    }
  }
}

Claude Desktop과 같은 형식. Windsurf 재시작 후 적용.

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

Continue는 맵이 아닌 서버 오브젝트 배열 사용.

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

context_servers에 추가. 저장 시 Zed가 핫 리로드.

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

한 줄 명령. claude mcp list로 확인, claude mcp remove로 제거.

사용 사례

실전 활용법: Anthropic Quickstarts

비즈니스를 위해 고객 지원 퀵스타트 포크

👤 지원 자동화를 구축하는 창업자/프로덕트 개발자 ⏱ ~240 min intermediate

언제 쓸까: 커스터마이즈 전에 작동하는 베이스라인을 원할 때.

사전 조건
  • Anthropic API 키 — console.anthropic.com에서 발급
흐름
  1. 포크 및 설정
    Use anthropic-quickstarts. Walk me through forking the customer-support template for my company's KB.✓ 복사됨
    → 레포 포크됨, KB 연결됨
  2. 데이터 소스 교체
    Swap mock KB with my Notion/Helpscout export. Test against 10 real tickets.✓ 복사됨
    → KB에 기반한 응답
  3. 실제 지원 도구에 연결
    Now connect to Zendesk/Intercom for live use.✓ 복사됨
    → 실제로 초안 작성 중인 티켓

결과: 주 단위가 아닌 일 단위의 프로덕션 형태 지원 에이전트.

에이전트 프레임워크 퀵스타트를 시작점으로 사용

👤 커스텀 에이전트를 구축하려는 개발자 ⏱ ~90 min intermediate

언제 쓸까: Reddit의 무작위 포크가 아닌 SDK 승인된 스캐폴딩을 원할 때.

흐름
  1. 스캐폴드 가져오기
    Show me the agents quickstart skeleton. Strip to the minimum viable.✓ 복사됨
    → 포크할 최소 스캐폴드
  2. 도메인 추가
    Add tools: lookup_user, refund_order, send_email.✓ 복사됨
    → 도메인 특화 에이전트

결과: 공식 패턴으로 구축된 커스텀 에이전트.

작업에 대한 적합성 평가를 위해 컴퓨터 사용 데모 설정

👤 내부 워크플로우에 컴퓨터 사용을 고려하는 팀 ⏱ ~60 min advanced

언제 쓸까: 컴퓨터 사용이 자신의 작업에 실제로 작동하는지 알고 싶을 때.

사전 조건
  • Docker — 컴퓨터 사용 샌드박스 실행에 필요
흐름
  1. 데모 실행
    Walk me through running the computer-use container.✓ 복사됨
    → 컨테이너 실행, 데모 브라우저 표시
  2. 내 워크플로우로 테스트
    Have it complete a real task from our SOP.✓ 복사됨
    → 스크린샷과 함께 작업 시도

결과: 컴퓨터 사용이 작업을 해결하는지에 대한 실증적 답변.

함정
  • 컴퓨터 사용이 도구 호출보다 느리고 불안정함 — 먼저 직접 API 도구 시도; API가 없을 때만 컴퓨터 사용으로 대체

조합

다른 MCP와 조합해 10배 효율

anthropic-quickstarts-skill + anthropic-cookbook-skill

형태는 퀵스타트, 기법은 쿡북

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

퀵스타트 코드 + 과정 설명

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

도구

이 MCP가 노출하는 것

도구입력언제 호출비용
(quickstart templates) fork point 새 앱 시작 시 0

비용 및 제한

운영 비용

API 쿼터
퀵스타트는 API를 호출 — 사용량 요금 적용
호출당 토큰
퀵스타트별 가변
금액
무료 템플릿; 실행 시 Claude API 호출당 비용
개발 중에는 Opus가 아닌 Sonnet 사용

보안

권한, 시크릿, 파급범위

최소 스코프: anthropic-api-key
자격 증명 저장: 환경 변수에 ANTHROPIC_API_KEY 저장
데이터 외부 송신: 퀵스타트가 호출하는 것 (Anthropic API + 자신의 KB)

문제 해결

자주 발생하는 오류와 해결

오래된 의존성

퀵스타트는 버전을 고정; 신중하게 버전 올리고 테스트 재실행

컴퓨터 사용 컨테이너가 시작되지 않음

메모리 요구사항이 높음; Docker에 4GB 이상 할당

대안

Anthropic Quickstarts 다른 것과 비교

대안언제 쓰나단점/장점
anthropics/anthropic-cookbook전체 앱이 아닌 레시피를 원할 때레시피 단위 vs 앱 단위
wshobson/agents독립 실행형 앱이 아닌 Claude Code 내부의 서브에이전트를 원할 때다른 런타임 대상

더 보기

리소스

📖 GitHub에서 공식 README 읽기

🐙 열린 이슈 보기

🔍 400+ MCP 서버 및 Skills 전체 보기