account
bởi convex-dev
Create or inspect Convex accounts. Use when the user wants to set up a new account, check account details, or manage keys.
npx skills add https://github.com/convex-dev/convex --skill accountConvex Account Management
Create a New Account
With signing service (recommended)
Use mcp__convex-testnet__signingCreateAccount — creates a key pair and on-chain account in one step. Optionally fund via faucet.
With raw key
- Generate a key pair:
mcp__convex-testnet__keyGen - Create the account:
mcp__convex-testnet__createAccountwith the public key - Optionally fund with
faucetparameter (max 1 CVM = 1,000,000,000 copper)
Important: Save the seed securely — it cannot be recovered.
Inspect an Account
- Full details:
mcp__convex-testnet__describeAccountwith the address - Balance only:
mcp__convex-testnet__getBalancewith the address - Via query:
(account #ADDR)returns the full account record
Key Management
- List stored keys:
mcp__convex-testnet__signingListKeys - List key-account mappings:
mcp__convex-testnet__signingListAccounts - Generate new key:
mcp__convex-testnet__signingCreateKeywith a passphrase
Display
- Show balances in CVM units (1 CVM = 10^9 copper)
- Show addresses with
#prefix - Show public keys as hex strings