jpskill.com
🛠️ 開発・MCP コミュニティ 🔴 エンジニア向け 👤 エンジニア・AI開発者

🛠️ Coinbase Automation

Coinbase Automation

Coinbase(コインベース)のサービスを通じて、暗号

⏱ MCPサーバー実装 1日 → 2時間

📺 まず動画で見る(YouTube)

▶ 【衝撃】最強のAIエージェント「Claude Code」の最新機能・使い方・プログラミングをAIで効率化する超実践術を解説! ↗

※ jpskill.com 編集部が参考用に選んだ動画です。動画の内容と Skill の挙動は厳密には一致しないことがあります。

📜 元の英語説明(参考)

Coinbase Automation: list and manage cryptocurrency wallets, accounts, and portfolio data via Coinbase CDP SDK

🇯🇵 日本人クリエイター向け解説

一言でいうと

Coinbase(コインベース)のサービスを通じて、暗号

※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。

⚡ おすすめ: コマンド1行でインストール(60秒)

下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。

🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o coinbase-automation.zip https://jpskill.com/download/1517.zip && unzip -o coinbase-automation.zip && rm coinbase-automation.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/1517.zip -OutFile "$d\coinbase-automation.zip"; Expand-Archive "$d\coinbase-automation.zip" -DestinationPath $d -Force; ri "$d\coinbase-automation.zip"

完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して coinbase-automation.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → coinbase-automation フォルダができる
  3. 3. そのフォルダを C:\Users\あなたの名前\.claude\skills\(Win)または ~/.claude/skills/(Mac)へ移動
  4. 4. Claude Code を再起動

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-17
取得日時
2026-05-17
同梱ファイル
1

💬 こう話しかけるだけ — サンプルプロンプト

  • Coinbase Automation を使って、最小構成のサンプルコードを示して
  • Coinbase Automation の主な使い方と注意点を教えて
  • Coinbase Automation を既存プロジェクトに組み込む方法を教えて

これをClaude Code に貼るだけで、このSkillが自動発動します。

📖 Claude が読む原文 SKILL.md(中身を展開)

この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。

Coinbase Automation

Automate Coinbase operations including listing cryptocurrency wallets, paginating through wallet collections, and retrieving portfolio data.

Toolkit docs: composio.dev/toolkits/coinbase


Setup

This skill requires the Rube MCP server connected at https://rube.app/mcp.

Before executing any tools, ensure an active connection exists for the coinbase toolkit. If no connection is active, initiate one via RUBE_MANAGE_CONNECTIONS.


Core Workflows

1. List All Wallets

Retrieve all wallets from Coinbase with pagination support.

Tool: COINBASE_LIST_WALLETS

Key Parameters:

  • limit -- Results per page (1--100, default: 25)
  • order -- Sort order: "asc" (ascending) or "desc" (descending, default)
  • starting_after -- Cursor for forward pagination: ID of the last wallet from the previous page
  • ending_before -- Cursor for backward pagination: ID of the first wallet from the previous page

Example (first page):

Tool: COINBASE_LIST_WALLETS
Arguments:
  limit: 50
  order: "desc"

Example (next page):

Tool: COINBASE_LIST_WALLETS
Arguments:
  limit: 50
  order: "desc"
  starting_after: "wallet_abc123_last_id_from_prev_page"

2. Paginate Through All Wallets

To retrieve a complete wallet inventory, iterate through pages.

Steps:

  1. Call COINBASE_LIST_WALLETS with desired limit and order
  2. If the response contains more results, note the ID of the last wallet returned
  3. Call COINBASE_LIST_WALLETS again with starting_after set to that last wallet ID
  4. Repeat until no more results are returned

3. Audit Wallet Portfolio

Retrieve wallet data for portfolio analysis and reporting.

Steps:

  1. Call COINBASE_LIST_WALLETS with limit: 100 to maximize per-page results
  2. Collect wallet balances and metadata from each page
  3. Aggregate data across all pages for a complete portfolio view

4. Monitor Wallet Changes

Periodically list wallets to detect new additions or changes.

Steps:

  1. Call COINBASE_LIST_WALLETS with order: "desc" to get newest wallets first
  2. Compare against previously stored wallet IDs to identify new entries
  3. Schedule periodic checks for continuous monitoring

Known Pitfalls

Pitfall Detail
Pagination required Wallet lists are paginated. Always check for additional pages using cursor-based pagination (starting_after/ending_before).
Limit bounds The limit parameter accepts 1--100. Values outside this range cause errors. Default is 25.
Cursor-based pagination Uses wallet IDs as cursors, not page numbers. You must extract the last/first wallet ID from each response to navigate pages.
CDP SDK scope This tool uses the Coinbase CDP SDK. Available operations depend on the API key permissions granted during connection setup.

Quick Reference

Tool Slug Description
COINBASE_LIST_WALLETS List cryptocurrency wallets with pagination

Powered by Composio