trippy-mcp
Allows uploading token images to IPFS for token creation on SHROOM Pad.
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., "@trippy-mcpwhat's trending on shroom pad? quote a 0.5 INJ buy on the top one"
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.
trippy-mcp
Let your coding agent trade on Injective. trippy-mcp is a stdio MCP server that plugs into Claude Code, Codex, Cursor (any MCP client) and gives it tools to:
launch tokens on SHROOM Pad (bonding curve → graduates to a Choice CLMM pool)
trade bonding-curve tokens (buy/sell/quote, on-chain-exact quotes)
swap any Injective token through the Choice aggregation router (AMM + CLMM + orderbook smart order routing)
carry an agent identity: trades from your agent get an AGENT badge on Trippy Terminal, optionally linked to your profile
Non-custodial by construction. init generates a fresh key on your machine; no server ever sees it. The agent wallet is a budgeted burner you fund from your main wallet — never your main key.
Quickstart
npx trippy-mcp init # generate the agent wallet, pick a name, register
# fund the printed address with a small INJ budget, then connect a client:
claude mcp add trippy -e TRIPPY_MCP_PASSPHRASE=... -- npx -y trippy-mcp serveThen just talk to your agent: "what's trending on shroom pad? quote a 0.5 INJ buy on the top one" — or "launch a token called ... with this logo".
Related MCP server: cook4fun-mcp
Security model
The key never leaves your machine, and four independent layers stand between a misbehaving (or prompt-injected) model and your funds:
Budgeted burner — the wallet only ever holds what you send it. Your main wallet is never touched.
Policy engine in the signer (not in the tools, not in the model): per-tx USD cap, rolling 24h budget, slippage ceiling, and a hard contract allowlist (LaunchpadCore, its quote assets, the Choice aggregator — nothing else). Configured in
~/.trippy-mcp/config.json; changing it is a human action.Sweep is one-way home —
sweeptakes no destination. Funds can only go to the owner address you fixed atinit.Untrusted-data discipline — token names/descriptions are attacker-controlled internet text; tools sanitize them and fence them under
untrusted_metadataso your agent treats them as data, not instructions.
Plus: encrypted keystore by default (scrypt + AES-256-GCM), append-only audit log (~/.trippy-mcp/audit.log), dryRun mode, and a tradingEnabled kill switch. export-key exists but shouts at you.
Tools
Tool | What it does |
| resolve + inspect any token (curve state, graduation progress, Choice market data) |
| discovery + tape |
| preview a buy/sell — auto-routes curve vs Choice |
| execute — curve trades on SHROOM Pad, everything else via the Choice aggregator |
| launch on the bonding curve (image upload → IPFS, ~0.2 INJ creation fee, optional initial buy) |
| creator fees, referral fees, cancelled-launch refunds (reads first, only claims non-zero) |
| balances + policy budget; send funds home |
| identity + how to claim the agent to your Terminal profile |
Agent identity
init registers your agent's name with the Trippy registry (signed by the agent key — proof of key control, nothing custodial). From then on its trades show an AGENT badge on Trippy Terminal. To attach it to your profile ("operated by you"), run trippy-mcp claim-code and enter the code in Terminal → Settings → Agents with your main wallet.
CLI
trippy-mcp init create wallet + identity (interactive; --plaintext, --network testnet)
trippy-mcp serve run the MCP server (this is what your agent client launches)
trippy-mcp status balances (bank-authoritative), policy budget, registration
trippy-mcp register re-register / rename
trippy-mcp claim-code mint a profile-link code
trippy-mcp sweep <asset> <amount|all>
trippy-mcp export-key --yes-i-understandConfig (~/.trippy-mcp/config.json)
{
"network": "mainnet",
"agentName": "my-agent",
"ownerSweepAddress": "0x…", // immutable — the only sweep destination
"policy": {
"perTxCapUsd": 200,
"dailyBudgetUsd": 1000,
"maxSlippageBps": 300,
"tradingEnabled": true,
"allowUnpricedSpend": false
},
"dryRun": false
// optional: rpcUrls, lcdUrl, pumpApiBase, choiceApiBase, gasBufferPct, gasPriceWei, referrer
}Injective quirks this package handles for you
eth_getBalancecan report 0 for funded accounts on Injective's EVM RPC — balances are read from the Cosmos bank (LCD), and a transport shim keeps viem's preflight honest. Explorers/MetaMask may show 0 for the agent wallet;trippy-mcp statusis authoritative.Gas is billed at the limit, not usage — the signer estimates and adds a small buffer instead of flat limits.
Public RPCs 502 intermittently and receipts lag — requests retry across endpoints, and a missing receipt triggers a state re-read instead of a false failure.
Launches start Reserved until the keeper binds them (~seconds):
create_tokenwaits and reports honestly.
Development
npm ci && npm run typecheck && npm test && npm run build
node scripts/sync-abi.mjs --check # ABI-drift guard against the vendored artifact
SHROOM_REPO=../shroom_launchpad node scripts/sync-abi.mjs --refreshMIT
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.
Related MCP Servers
- Alicense-qualityFmaintenanceAgent-native, self-hosted MCP server for crypto trading and DeFi management. Enables agents to query balances, execute trades, and manage positions with a policy engine and secure key storage.Last updated9Apache 2.0
- FlicenseAqualityBmaintenanceAn MCP server that lets agents launch and trade coins on cook4.fun, a Uniswap-V3-native launchpad on the Robinhood chain.Last updated61
- Alicense-qualityDmaintenanceAn MCP server that gives AI agents real-time access to DeFi across multiple chains, enabling non-custodial crypto trading, portfolio queries, and transaction execution.Last updated177MIT
- Alicense-qualityCmaintenanceMCP server that lets any AI agent operate a wallet directly on-chain: create wallets, send, swap, bridge, and deploy contracts across EVM and Bitcoin networks.Last updated2MIT
Related MCP Connectors
HiveCapital MCP Server — autonomous investment layer for AI agents
No-KYC managed MCP for AI agents: sandboxed TypeScript trading SDK, isolated sub-accounts, futures.
MCP server connecting AI agents to non-custodial staking data across 130+ networks.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/danvaneijck/trippy-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server