AssetMCP
Provides tools to read ASA, ARC-200, and ARC-72 token data and generate unsigned transactions on the Algorand blockchain.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@AssetMCPWhat is the asset info for ASA 31566704 on Algorand mainnet?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
AssetMCP
stdio Model Context Protocol server for UluOS: normalized ASA, ARC-200, and ARC-72 reads plus unsigned transaction payloads on Algorand mainnet and Voi mainnet.
Signing and broadcasting are intentionally out of scope—use UluWalletMCP and UluBroadcastMCP (or your wallet) after fetching base64 txn groups from this service.
Service summary (for UluOS docs)
Field | Value |
Name |
|
Transport | stdio |
Version | 0.1.0 |
Networks |
|
Stack |
|
Output | JSON text content; BigInts as strings; binary as base64; txn builders return ordered |
Related MCP server: Bankless Onchain MCP Server
Setup
npm install
npm start
# or: node /absolute/path/to/AssetMCP/index.jsNode: >= 20.9 (required by ulujs).
Configuration
Defaults use Nodely free-tier Algod + Indexer endpoints (Algorand mainnet: *.4160.nodely.dev; Voi mainnet: *.voi.nodely.dev). No API key required. Override with environment variables:
Pattern: ASSET_MCP_<NETWORK>_<SUFFIX> where <NETWORK> is ALGORAND_MAINNET or VOI_MAINNET, and <SUFFIX> is one of:
ALGOD_URLALGOD_TOKENINDEXER_URLINDEXER_TOKEN
Example:
export ASSET_MCP_ALGORAND_MAINNET_ALGOD_URL="https://..."
export ASSET_MCP_ALGORAND_MAINNET_ALGOD_TOKEN="..."Response shape
Successful tool calls return JSON:
{
"ok": true,
"network": "algorand-mainnet",
"standard": "asa",
"method": "asa_get_asset",
"assetId": 31566704,
"data": { }
}Transaction builders add txCount and put base64 unsigned transactions under data.transactions (array order is the signing order).
Errors:
{
"ok": false,
"error": {
"code": "malformed_address",
"message": "...",
"details": null
}
}Tools (by namespace)
asa_* (algosdk / AVM)
Tool | Purpose |
| ASA params by ID |
| One account’s balance / frozen flag for an ASA |
| Indexer: paginated holdings; optional |
| Unsigned |
| Unsigned opt-in (0-amount self transfer) |
| Unsigned transfer + |
arc200_* (ulujs ARC-200)
Tool | Purpose |
|
|
| Balance (base units, string in JSON) |
| Allowance |
|
|
|
|
|
|
| Simulated transfer → unsigned txn group |
| Simulated |
| Simulated |
arc72_* (ulujs ARC-72)
Tool | Purpose |
|
|
| Owner |
| NFT count |
| Approved address for token |
| Operator flag |
| Token URI |
| Total supply |
| Transfer / Approval / ApprovalForAll |
|
|
| Approve spender for |
|
|
Cursor MCP config
This repo includes .cursor/mcp.json so asset-mcp is available when you open the repo as the workspace folder. Reload the window or restart Cursor after changing it.
To add manually or merge into another project:
{
"mcpServers": {
"asset-mcp": {
"command": "node",
"args": ["${workspaceFolder}/index.js"]
}
}
}Machine-readable capabilities
See examples/capabilities.json.
Live demo: from the repo root, npm run demo (or node examples/demo.mjs) spawns the MCP server over stdio and calls asa_get_asset (Algorand USDC), arc200_get_metadata (Voi wVOI), and arc72_total_supply (sample ARC-72 collection).
Implementation notes
stdout hygiene:
ulujs/arccjscallconsole.logduring simulation. UnlessASSET_MCP_DEBUGis set,console.logis redirected to stderr so MCP JSON-RPC on stdout stays valid.ARC txn bytes: Built by simulating with
simulate: trueand returning the unsigned group fromarccjs(txnsarray). Extra group transactions (e.g. box / resource-sharing) may appear—sign the full ordered group.ARC-200 / ARC-72 reads: Use ulujs
Contractwith the public simulation sender (oneAddressfrom ulujs) for readonly ABI calls.Event filters:
addressis forwarded to the indexer assender(arccjs API).ARC-72
setApprovalForAll: Implemented againstcontractInstance.arc72_setApprovalForAllbecauseulujssafe_arc72_setApprovalForAllreferences undefined variables (upstream bug).
License
MIT (see LICENSE).
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/NautilusOSS/AssetMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server