loading…
Search for a command to run...
loading…
An MCP server that enables interaction with the Tinyman AMM DEX on the Algorand blockchain. It provides tools for pool discovery, token analytics, swap quotes,
An MCP server that enables interaction with the Tinyman AMM DEX on the Algorand blockchain. It provides tools for pool discovery, token analytics, swap quotes, and building unsigned transactions for swaps and liquidity management.
MCP (Model Context Protocol) server for the Tinyman AMM DEX on Algorand.
Built on the EmptyMCP template for UluOS, following the same patterns as HumbleSwapMCP.
| Tool | Description |
|---|---|
get_pools |
List top Tinyman v2 liquidity pools |
get_pool |
Get on-chain pool info by asset pair |
get_pool_analytics |
Get analytics for a pool by address |
get_tokens |
List traded tokens with volume data |
get_asset_info |
Get on-chain ASA metadata |
get_asset_analytics |
Get Tinyman analytics for an asset |
get_asset_pools |
Get all pools containing an asset |
get_protocol_stats |
Get Tinyman protocol-wide statistics |
get_quote |
Get a swap quote (no txn built) |
swap_txn |
Build unsigned swap transactions |
add_liquidity_txn |
Build unsigned add-liquidity transactions |
remove_liquidity_txn |
Build unsigned remove-liquidity transactions |
report_issue |
Report a bug or feature request |
npm install
node index.js
Add the following to your MCP client config (e.g. claude_desktop_config.json):
{
"mcpServers": {
"tinyman-mcp": {
"command": "node",
"args": ["/absolute/path/to/tinyman-mcp/index.js"]
}
}
}
index.js Entry point — registers tools, starts stdio transport
data/
contracts.json Algorand mainnet/testnet node endpoints and app IDs
lib/
client.js Algod/Indexer client setup
pools.js Pool fetching via Tinyman SDK (poolUtils.v2)
tokens.js Token resolution and ASA lookup
quote.js Swap quotes via Tinyman SDK (Swap.v2)
builders.js Transaction builders (swap, add/remove liquidity)
api.js Tinyman analytics REST API calls
utils.js Unit conversion, JSON helpers, txn encoding
reporting.js GitHub issue submission
tools/
pools.js MCP pool tools
tokens.js MCP token tools
trading.js MCP trading tools (quotes, swaps, liquidity)
reporting.js MCP issue reporting tool
MIT
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"tinyman-mcp-server": {
"command": "npx",
"args": []
}
}
}