Coinbase Automation
Coinbase Automation: list and manage cryptocurrency wallets, accounts, and portfolio data via Coinbase CDP SDK
Author
Category
Development ToolsInstall
Hot:17
Download and extract to your skills directory
Copy command and send to OpenClaw for auto-install:
Download and install this skill https://openskills.cc/api/download?slug=composiohq-composio-skills-coinbase-automation&locale=en&source=copy
Coinbase Automation Skills
Skill Overview
Coinbase Automation uses the Coinbase CDP SDK to automate the management and querying of cryptocurrency wallet, account, and portfolio data.
Use Cases
When you need to check the list of wallets and balance information in your Coinbase accounts periodically or in real time—suitable for individual investors tracking assets or enterprises performing account audits.
If you have multiple wallet accounts, you can use pagination to retrieve the complete wallet list in one go, avoiding the hassle of manually querying each wallet one by one.
Retrieve complete wallet data and asset information to generate investment reports, analyze asset allocation, or support financial planning.
Core Features
Supports retrieving all cryptocurrency wallets on the Coinbase platform. You can customize sorting and the number of items displayed per page to flexibly meet different query needs.
Uses a cursor-based pagination mechanism, supporting both forward and backward page navigation. This enables efficient traversal of large volumes of wallet data without missing any accounts.
Collects wallet balances and related metadata. After aggregating results across multiple pages, you can form a complete portfolio view for further data analysis and processing.
Frequently Asked Questions
What prerequisites does Coinbase Automation require?
To use this skill, you need to connect to the Rube MCP server (https://rube.app/mcp) and ensure that an effective Coinbase toolkit connection has been established. For the first time, you must initiate the connection using
RUBE_MANAGE_CONNECTIONS.How do I get the complete wallet list?
Because the wallet list is returned via a paginated mechanism, multiple query calls are required. First, fetch the first page of data. Then extract the ID of the last wallet from the response and pass it as the
starting_after parameter for the next page query. Repeat this process until no more results are returned.What Coinbase operations are supported?
In the current version, the primary support is wallet list querying (
COINBASE_LIST_WALLETS), including pagination, sorting, and optional filtering. The range of available operations depends on the API key permissions granted when configuring the connection.