AssetMCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| ASSET_MCP_DEBUG | No | If set, enables debug logging (redirects console.log to stderr otherwise). | |
| ASSET_MCP_VOI_MAINNET_ALGOD_URL | No | Algod URL for Voi mainnet. Defaults to Nodely free-tier endpoint. | |
| ASSET_MCP_VOI_MAINNET_ALGOD_TOKEN | No | Algod API token for Voi mainnet. | |
| ASSET_MCP_VOI_MAINNET_INDEXER_URL | No | Indexer URL for Voi mainnet. Defaults to Nodely free-tier endpoint. | |
| ASSET_MCP_VOI_MAINNET_INDEXER_TOKEN | No | Indexer API token for Voi mainnet. | |
| ASSET_MCP_ALGORAND_MAINNET_ALGOD_URL | No | Algod URL for Algorand mainnet. Defaults to Nodely free-tier endpoint. | |
| ASSET_MCP_ALGORAND_MAINNET_ALGOD_TOKEN | No | Algod API token for Algorand mainnet. | |
| ASSET_MCP_ALGORAND_MAINNET_INDEXER_URL | No | Indexer URL for Algorand mainnet. Defaults to Nodely free-tier endpoint. | |
| ASSET_MCP_ALGORAND_MAINNET_INDEXER_TOKEN | No | Indexer API token for Algorand mainnet. |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| asa_get_assetA | Load ASA configuration and on-chain parameters by asset ID (Algod). |
| asa_get_holdingA | Return one account's balance and frozen flag for an ASA (Algod account info). |
| asa_search_holdingsA | List ASA holdings for an account via Indexer (paginated). Optional assetId filter. |
| asa_transfer_txnA | Build an unsigned ASA transfer (axfer). Amount is in base units. Optional closeRemainderTo closes the sender holding after transfer. |
| asa_optin_txnA | Build an unsigned ASA opt-in (0-amount self transfer). |
| asa_closeout_txnA | Build an unsigned ASA transfer that closes the sender's holding (set closeRemainderTo). Supply full balance as amount. |
| arc200_get_metadataA | Read ARC-200 name, symbol, decimals, and totalSupply (ulujs + simulation). |
| arc200_balance_ofA | ARC-200 balanceOf(address) as base units (string in response). |
| arc200_allowanceC | ARC-200 allowance(owner, spender) in base units. |
| arc200_has_balanceA | ARC-200 hasBalance(address) — whether the account has a non-zero balance box (ulujs dual-schema read). |
| arc200_has_allowanceA | ARC-200 hasAllowance(owner, spender) — allowance box present / non-zero (ulujs dual-schema read). |
| arc200_get_eventsA | Fetch ARC-200 contract events (Transfer + Approval) via indexer (ulujs getEvents). |
| arc200_transfer_txnA | Simulate ARC-200 transfer and return unsigned txn group as base64 strings (sign with UluWalletMCP). |
| arc200_transfer_from_txnA | Simulate ARC-200 transferFrom(spender, from, to, amount); spender signs. |
| arc200_approve_txnB | Simulate ARC-200 approve(spender, amount); owner signs. |
| nt200_withdraw_txnA | Build unsigned NT200 withdraw(amount) txn. Withdraws ARC-200 wrapped network tokens or ASAs; token holder must be opted in to the underlying asset. One txn (ulujs CONTRACT + abi.nt200). |
| nt200_deposit_txnA | Build unsigned NT200 deposit(amount) txn(s). Deposit network token (payment) or ASA (axfer) preceding app call. For network: payment + app call; for ASA: set assetId for axfer + app call. Uses ulujs CONTRACT + abi.nt200. |
| nt200_create_balance_box_txnA | Build unsigned NT200 createBalanceBox(address) txn(s). Creates a balance box for the specified address if it doesn't exist. May include payment txn for box creation cost. Uses ulujs CONTRACT + abi.nt200. |
| arc72_get_metadataA | Aggregate ARC-72 facts: totalSupply; if tokenId set, owner, tokenURI, approved; optional supportsInterface (8-hex selector). |
| arc72_owner_ofC | ARC-72 ownerOf(tokenId). |
| arc72_balance_ofA | ARC-72 balanceOf(address) — number of NFTs owned. |
| arc72_get_approvedC | ARC-72 getApproved(tokenId). |
| arc72_is_approved_for_allD | ARC-72 isApprovedForAll(owner, operator). |
| arc72_token_uriA | ARC-72 tokenURI(tokenId) as UTF-8 string (null bytes stripped by ulujs). |
| arc72_total_supplyC | ARC-72 totalSupply(). |
| arc72_get_eventsA | Fetch ARC-72 Transfer, Approval, ApprovalForAll events (ulujs getEvents). |
| arc72_transfer_txnA | Simulate ARC-72 transferFrom(from, to, tokenId). Signer is sender (owner or approved operator). |
| arc72_approve_txnA | Simulate ARC-72 approve(approved, tokenId); owner signs. |
| arc72_set_approval_for_all_txnB | Simulate ARC-72 setApprovalForAll(operator, approved). Uses arccjs directly (ulujs wrapper is broken). Owner signs. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 29 tools
Each tool is unambiguously prefixed by its protocol (asa_, arc200_, nt200_, arc72_) and named after a specific action or query, so no two tools appear to target the same operation. Even similar functions like `balance_of` and `has_balance` have distinct meanings and clear descriptions. The grouping by asset type eliminates cross-protocol confusion.
All tool names follow a strict lowercase snake_case pattern with a protocol prefix and a verb_noun or verb_txn suffix. Transaction builders consistently end in `_txn`, while queries use `get_`, `search_`, `has_`, etc., making the naming perfectly predictable across all 29 tools.
With 29 tools, the server significantly exceeds the recommended 3-15 range for well-scoped MCP servers, and is above the 25+ threshold explicitly labeled as 'too many' in the rubric. While each tool serves a distinct purpose and covers multiple token standards, the sheer number is likely to overwhelm agents and increase selection complexity.
The tool set provides comprehensive coverage for each supported asset type: ASA queries, holdings, transfers, opt-in, and close-out; ARC-200 includes metadata, balances, allowances, approvals, transfers, and events; ARC-72 covers ownership, approvals, token URI, supply, transfers, and events. NT200 covers deposit, withdrawal, and balance box creation. Missing operations like asset creation are outside the apparent scope, so there are no critical gaps.