/ 目錄 / 演練場 / 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.✓ 已複製
    → 程式庫已分支,知識庫已插入
  2. 替換資料來源
    Swap mock KB with my Notion/Helpscout export. Test against 10 real tickets.✓ 已複製
    → 以你的知識庫為基礎的回覆
  3. 連接到實際支援工具
    Now connect to Zendesk/Intercom for live use.✓ 已複製
    → 工單實際在起草

結果: 正式形狀的客服代理,幾天內完成,而非幾週。

將代理框架快速入門作為你的起點

👤 即將建構自訂代理的開發者 ⏱ ~90 min intermediate

何時使用: 你想要 SDK 認可的框架,而非來自 Reddit 的隨機分支。

步驟
  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 搭配,撬動十倍槓桿

anthropic-quickstarts-skill + anthropic-cookbook-skill

快速入門定形狀;食譜提供技術

anthropic-quickstarts-skill + anthropic-courses-skill

快速入門程式碼 + 課程解釋

工具

此 MCP 暴露的能力

工具輸入參數何時呼叫成本
(quickstart templates) fork point 開始新應用時 0

成本與限制

運行它的成本

API 配額
快速入門呼叫 API——你的使用費用適用
每次呼叫 Token 數
每個快速入門不同
費用
模板免費;執行時按 Claude API 呼叫付費
提示
開發期間使用 Sonnet 而非 Opus

安全

權限、密鑰、影響範圍

最小權限: anthropic-api-key
憑證儲存: ANTHROPIC_API_KEY 存於環境變數
資料出站: 快速入門呼叫的任何服務(Anthropic API + 你的知識庫)

故障排查

常見錯誤與修復

過時的依賴

快速入門固定版本;謹慎升級並重新執行測試

電腦使用容器啟動失敗

記憶體需求很高;為 Docker 分配 >= 4GB

替代方案

Anthropic Quickstarts 對比其他方案

替代方案何時用它替代權衡
anthropics/anthropic-cookbook你想要食譜,而非完整應用食譜粒度 vs 應用粒度
wshobson/agents你想要 Claude Code 內部的子代理,而非獨立應用不同的執行目標

更多

資源

📖 閱讀 GitHub 上的官方 README

🐙 查看未解決的 issue

🔍 瀏覽全部 400+ MCP 伺服器和 Skills