{
  "schemaVersion": "1.0",
  "item": {
    "slug": "basecamp-cli-mcp",
    "name": "Basecamp CLI",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/drkraft/basecamp-cli-mcp",
    "canonicalUrl": "https://clawhub.ai/drkraft/basecamp-cli-mcp",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/basecamp-cli-mcp",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=basecamp-cli-mcp",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "CHANGELOG.md",
      "CONTRIBUTING.md",
      "README.md",
      "SKILL.md",
      "package-lock.json",
      "package.json"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/basecamp-cli-mcp"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/basecamp-cli-mcp",
    "agentPageUrl": "https://openagent3.xyz/skills/basecamp-cli-mcp/agent",
    "manifestUrl": "https://openagent3.xyz/skills/basecamp-cli-mcp/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/basecamp-cli-mcp/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Basecamp CLI",
        "body": "Full-featured CLI and MCP server for Basecamp 4 API."
      },
      {
        "title": "Features",
        "body": "21 CLI command groups covering all Basecamp 4 domains\n76 MCP tools for AI assistant integration\nAutomatic pagination and retry with exponential backoff\nOAuth 2.0 authentication with PKCE"
      },
      {
        "title": "Installation",
        "body": "npm install -g @drkraft/basecamp-cli"
      },
      {
        "title": "Requirements",
        "body": "Node.js >= 20"
      },
      {
        "title": "Authentication Setup",
        "body": "Create an OAuth app at https://launchpad.37signals.com/integrations\n\nSet redirect URI to http://localhost:9292/callback\n\n\nConfigure credentials:\n\nbasecamp auth configure --client-id <your-client-id>\nexport BASECAMP_CLIENT_SECRET=\"<your-client-secret>\"\nexport BASECAMP_CLIENT_ID=\"<your-client-id>\"\n\nLogin:\n\nbasecamp auth login"
      },
      {
        "title": "MCP Server Configuration",
        "body": "Add to your MCP config (e.g., ~/.config/claude/claude_desktop_config.json):\n\n{\n  \"mcpServers\": {\n    \"basecamp\": {\n      \"command\": \"basecamp-mcp\",\n      \"env\": {\n        \"BASECAMP_CLIENT_ID\": \"<your-client-id>\",\n        \"BASECAMP_CLIENT_SECRET\": \"<your-client-secret>\"\n      }\n    }\n  }\n}"
      },
      {
        "title": "Available MCP Tools (76)",
        "body": "CategoryToolsProjectsbasecamp_list_projects, basecamp_get_project, basecamp_create_project, basecamp_archive_projectTodo Listsbasecamp_list_todolists, basecamp_get_todolist, basecamp_create_todolist, basecamp_delete_todolistTodo Groupsbasecamp_list_todolist_groups, basecamp_create_todolist_groupTodosbasecamp_list_todos, basecamp_get_todo, basecamp_create_todo, basecamp_update_todo, basecamp_complete_todo, basecamp_uncomplete_todo, basecamp_delete_todo, basecamp_move_todoMessagesbasecamp_list_messages, basecamp_get_message, basecamp_create_messagePeoplebasecamp_list_people, basecamp_get_person, basecamp_get_meCommentsbasecamp_list_comments, basecamp_get_comment, basecamp_create_comment, basecamp_update_comment, basecamp_delete_commentVaultsbasecamp_list_vaults, basecamp_get_vault, basecamp_create_vault, basecamp_update_vaultDocumentsbasecamp_list_documents, basecamp_get_document, basecamp_create_document, basecamp_update_documentUploadsbasecamp_list_uploads, basecamp_get_upload, basecamp_create_upload, basecamp_update_uploadSchedulesbasecamp_get_schedule, basecamp_list_schedule_entries, basecamp_get_schedule_entry, basecamp_create_schedule_entry, basecamp_update_schedule_entry, basecamp_delete_schedule_entryCard Tablesbasecamp_get_card_table, basecamp_get_column, basecamp_create_column, basecamp_update_column, basecamp_delete_column, basecamp_list_cards, basecamp_get_card, basecamp_create_card, basecamp_update_card, basecamp_move_card, basecamp_delete_cardSearchbasecamp_searchRecordingsbasecamp_list_recordings, basecamp_archive_recording, basecamp_restore_recording, basecamp_trash_recordingSubscriptionsbasecamp_list_subscriptions, basecamp_subscribe, basecamp_unsubscribeWebhooksbasecamp_list_webhooks, basecamp_get_webhook, basecamp_create_webhook, basecamp_update_webhook, basecamp_delete_webhook, basecamp_test_webhookEventsbasecamp_list_eventsCampfiresbasecamp_list_campfires, basecamp_get_campfire_lines, basecamp_send_campfire_line"
      },
      {
        "title": "CLI Quick Reference",
        "body": "# Projects\nbasecamp projects list\nbasecamp projects get <id>\n\n# Todos\nbasecamp todolists list --project <id>\nbasecamp todos list --project <id> --list <list-id>\nbasecamp todos create --project <id> --list <list-id> --content \"Task\"\nbasecamp todos complete <id> --project <id>\nbasecamp todos delete <id> --project <id>\nbasecamp todos move <id> --project <id> --list <target-list-id>\n\n# Messages\nbasecamp messages list --project <id>\nbasecamp messages create --project <id> --subject \"Title\" --content \"<p>Body</p>\"\n\n# Kanban\nbasecamp cardtables get --project <id>\nbasecamp cardtables cards --project <id> --column <col-id>\nbasecamp cardtables create-card --project <id> --column <col-id> --title \"Card\"\n\n# Search\nbasecamp search \"keyword\"\nbasecamp search \"keyword\" --type Todo --project <id>\n\nAll commands support --format json for JSON output."
      },
      {
        "title": "Links",
        "body": "Full Documentation\nnpm Package\nBasecamp API Reference"
      }
    ],
    "body": "Basecamp CLI\n\nFull-featured CLI and MCP server for Basecamp 4 API.\n\nFeatures\n21 CLI command groups covering all Basecamp 4 domains\n76 MCP tools for AI assistant integration\nAutomatic pagination and retry with exponential backoff\nOAuth 2.0 authentication with PKCE\nInstallation\nnpm install -g @drkraft/basecamp-cli\n\nRequirements\nNode.js >= 20\nAuthentication Setup\nCreate an OAuth app at https://launchpad.37signals.com/integrations\nSet redirect URI to http://localhost:9292/callback\nConfigure credentials:\nbasecamp auth configure --client-id <your-client-id>\nexport BASECAMP_CLIENT_SECRET=\"<your-client-secret>\"\nexport BASECAMP_CLIENT_ID=\"<your-client-id>\"\n\nLogin:\nbasecamp auth login\n\nMCP Server Configuration\n\nAdd to your MCP config (e.g., ~/.config/claude/claude_desktop_config.json):\n\n{\n  \"mcpServers\": {\n    \"basecamp\": {\n      \"command\": \"basecamp-mcp\",\n      \"env\": {\n        \"BASECAMP_CLIENT_ID\": \"<your-client-id>\",\n        \"BASECAMP_CLIENT_SECRET\": \"<your-client-secret>\"\n      }\n    }\n  }\n}\n\nAvailable MCP Tools (76)\nCategory\tTools\nProjects\tbasecamp_list_projects, basecamp_get_project, basecamp_create_project, basecamp_archive_project\nTodo Lists\tbasecamp_list_todolists, basecamp_get_todolist, basecamp_create_todolist, basecamp_delete_todolist\nTodo Groups\tbasecamp_list_todolist_groups, basecamp_create_todolist_group\nTodos\tbasecamp_list_todos, basecamp_get_todo, basecamp_create_todo, basecamp_update_todo, basecamp_complete_todo, basecamp_uncomplete_todo, basecamp_delete_todo, basecamp_move_todo\nMessages\tbasecamp_list_messages, basecamp_get_message, basecamp_create_message\nPeople\tbasecamp_list_people, basecamp_get_person, basecamp_get_me\nComments\tbasecamp_list_comments, basecamp_get_comment, basecamp_create_comment, basecamp_update_comment, basecamp_delete_comment\nVaults\tbasecamp_list_vaults, basecamp_get_vault, basecamp_create_vault, basecamp_update_vault\nDocuments\tbasecamp_list_documents, basecamp_get_document, basecamp_create_document, basecamp_update_document\nUploads\tbasecamp_list_uploads, basecamp_get_upload, basecamp_create_upload, basecamp_update_upload\nSchedules\tbasecamp_get_schedule, basecamp_list_schedule_entries, basecamp_get_schedule_entry, basecamp_create_schedule_entry, basecamp_update_schedule_entry, basecamp_delete_schedule_entry\nCard Tables\tbasecamp_get_card_table, basecamp_get_column, basecamp_create_column, basecamp_update_column, basecamp_delete_column, basecamp_list_cards, basecamp_get_card, basecamp_create_card, basecamp_update_card, basecamp_move_card, basecamp_delete_card\nSearch\tbasecamp_search\nRecordings\tbasecamp_list_recordings, basecamp_archive_recording, basecamp_restore_recording, basecamp_trash_recording\nSubscriptions\tbasecamp_list_subscriptions, basecamp_subscribe, basecamp_unsubscribe\nWebhooks\tbasecamp_list_webhooks, basecamp_get_webhook, basecamp_create_webhook, basecamp_update_webhook, basecamp_delete_webhook, basecamp_test_webhook\nEvents\tbasecamp_list_events\nCampfires\tbasecamp_list_campfires, basecamp_get_campfire_lines, basecamp_send_campfire_line\nCLI Quick Reference\n# Projects\nbasecamp projects list\nbasecamp projects get <id>\n\n# Todos\nbasecamp todolists list --project <id>\nbasecamp todos list --project <id> --list <list-id>\nbasecamp todos create --project <id> --list <list-id> --content \"Task\"\nbasecamp todos complete <id> --project <id>\nbasecamp todos delete <id> --project <id>\nbasecamp todos move <id> --project <id> --list <target-list-id>\n\n# Messages\nbasecamp messages list --project <id>\nbasecamp messages create --project <id> --subject \"Title\" --content \"<p>Body</p>\"\n\n# Kanban\nbasecamp cardtables get --project <id>\nbasecamp cardtables cards --project <id> --column <col-id>\nbasecamp cardtables create-card --project <id> --column <col-id> --title \"Card\"\n\n# Search\nbasecamp search \"keyword\"\nbasecamp search \"keyword\" --type Todo --project <id>\n\n\nAll commands support --format json for JSON output.\n\nLinks\nFull Documentation\nnpm Package\nBasecamp API Reference"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/drkraft/basecamp-cli-mcp",
    "publisherUrl": "https://clawhub.ai/drkraft/basecamp-cli-mcp",
    "owner": "drkraft",
    "version": "2.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/basecamp-cli-mcp",
    "downloadUrl": "https://openagent3.xyz/downloads/basecamp-cli-mcp",
    "agentUrl": "https://openagent3.xyz/skills/basecamp-cli-mcp/agent",
    "manifestUrl": "https://openagent3.xyz/skills/basecamp-cli-mcp/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/basecamp-cli-mcp/agent.md"
  }
}