ComposioHQ/Coinbase-Automation

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

Compatible con~Claude Code~Codex CLICursor
npx add-skill https://github.com/ComposioHQ/awesome-codex-skills/tree/main/composio-skills/coinbase-automation

name: Coinbase Automation description: "Coinbase Automation: list and manage cryptocurrency wallets, accounts, and portfolio data via Coinbase CDP SDK" requires: mcp: [rube]

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

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

Quick Reference

Tool SlugDescription
COINBASE_LIST_WALLETSList cryptocurrency wallets with pagination

Powered by Composio

Individual skills in this repo

This repo contains 20 individual skills — each has its own dedicated page.

ComposioHQ/-21risk-automation

Automate 21risk tasks via Rube MCP (Composio). Always search tools first for current schemas.

ComposioHQ/-2chat-automation

Automate 2chat tasks via Rube MCP (Composio). Always search tools first for current schemas.

ComposioHQ/ably-automation

Automate Ably tasks via Rube MCP (Composio). Always search tools first for current schemas.

ComposioHQ/abstract-automation

Automate Abstract tasks via Rube MCP (Composio). Always search tools first for current schemas.

ComposioHQ/abuselpdb-automation

Automate Abuselpdb tasks via Rube MCP (Composio). Always search tools first for current schemas.

ComposioHQ/abyssale-automation

Automate Abyssale tasks via Rube MCP (Composio). Always search tools first for current schemas.

ComposioHQ/accelo-automation

Automate Accelo tasks via Rube MCP (Composio). Always search tools first for current schemas.

ComposioHQ/accredible-certificates-automation

Automate Accredible Certificates tasks via Rube MCP (Composio). Always search tools first for current schemas.

ComposioHQ/acculynx-automation

Automate Acculynx tasks via Rube MCP (Composio). Always search tools first for current schemas.

ComposioHQ/active-campaign-automation

Automate ActiveCampaign tasks via Rube MCP (Composio). Always search tools first for current schemas.

ComposioHQ/addresszen-automation

Automate Addresszen tasks via Rube MCP (Composio). Always search tools first for current schemas.

ComposioHQ/adobe-automation

Automate Adobe tasks via Rube MCP (Composio). Always search tools first for current schemas.

ComposioHQ/adrapid-automation

Automate Adrapid tasks via Rube MCP (Composio). Always search tools first for current schemas.

ComposioHQ/adyntel-automation

Automate Adyntel tasks via Rube MCP (Composio). Always search tools first for current schemas.

ComposioHQ/aeroleads-automation

Automate Aeroleads tasks via Rube MCP (Composio). Always search tools first for current schemas.

ComposioHQ/aero-workflow-automation

Automate Aero Workflow tasks via Rube MCP (Composio). Always search tools first for current schemas.

ComposioHQ/affinda-automation

Automate Affinda tasks via Rube MCP (Composio). Always search tools first for current schemas.

ComposioHQ/affinity-automation

Automate Affinity tasks via Rube MCP (Composio). Always search tools first for current schemas.

ComposioHQ/agencyzoom-automation

Automate Agencyzoom tasks via Rube MCP (Composio). Always search tools first for current schemas.

ComposioHQ/agent-deep-links

Build, validate, and troubleshoot deep links for Codex, Cursor, VS Code, Visual Studio, and similar tools. Use when users ask for clickable links (especially in Slack) that open threads, files, folders, or app settings.

Skills relacionados