@thryx/mcp-server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| THRYX_API_KEY | No | Your API key for ThryxProtocol. If not provided, a wallet is auto-registered on first run and credentials saved locally. | |
| THRYX_BASE_URL | No | Base URL for the Thryx API (default: https://thryx.fun). |
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 |
|---|---|
| thryx_aboutA | Protocol overview: Diamond address, chain, agent surfaces, doc links. Always available, no key required. Start here when an agent first connects. |
| thryx_balanceA | Your wallet balance — ETH, THRYX, total value, and a recommended next-action. Requires THRYX_API_KEY. Equivalent to GET /api/agent/home. |
| thryx_portfolioA | Full portfolio scan for your wallet — every token holding with live prices and PnL. Requires THRYX_API_KEY. Heavier than thryx_balance; call when you need per-token detail. |
| thryx_infoA | Detailed info for a single token: price, supply, raised, fees, graduation status, V4-native flag, healthScore. No key required. |
| thryx_safety_scoreB | Token safety score (0–100, higher is safer). Computed by the launchpad from on-chain liquidity, holder distribution, deployer history, and trading patterns. Reads the healthScore field from the token detail endpoint. |
| thryx_rug_checkA | Rug-risk indicators for a token: deployer address, graduated status, trade count, anti-sniper window, fee tier. Uses the same token detail endpoint as thryx_info, surfacing the fields a rug check cares about. |
| thryx_recent_tokensA | Most recently launched tokens. No key required. Sorted newest-first. |
| thryx_searchB | Search tokens by name, symbol, or address. |
| thryx_trendingA | Tokens with the most trading activity in the last 6 hours. Top conviction signals. |
| thryx_graduatingB | Tokens closest to graduation (250M THRYX raised → migrates to Uniswap V4). High-conviction late-stage curve plays. |
| thryx_leaderboardB | Top traders by volume + top creators by fees earned. Range: 24h | 7d | 30d. |
| thryx_token_of_dayC | The currently-featured token of the day, picked by the platform algorithm. |
| thryx_paymaster_statsA | Live paymaster state — sponsored ETH balance, THRYX reserves, capacity. Pulled from /api/status. |
| thryx_stats_v2A | Platform-wide stats: total tokens, users, trades, ETH/THRYX prices, reserves, lifetime fees, reward pool. Pulled from /api/stats. |
| thryx_protocol_paramsA | Live protocol params: fee in basis points, creator fee split, graduation threshold, ETH/THRYX exchange rate, total launched, total graduated. Pulled from /api/protocol-params. |
| thryx_launchA | Launch a new token on Base (gasless). The platform pays gas via paymaster. Returns tokenAddress + txHash. Requires THRYX_API_KEY. Image required (public URL or data: URL). |
| thryx_buyA | Buy a token with ETH. Gasless via paymaster. Slippage protected. Requires THRYX_API_KEY and enough ETH in your wallet to cover the trade value (gas is sponsored separately). |
| thryx_sellA | Sell a token for ETH. Gasless via paymaster. Routes through bonding curve OR V4 pool depending on graduation/V4-native status. Slippage protected. |
| thryx_claimA | Claim accumulated creator fees for a token you launched (70% of every swap fee accrues to the creator). Returns claimed amount + txHash. Requires THRYX_API_KEY and creator status. |
| thryx_set_referrerB | Set a referrer wallet for your account. The referrer earns 5% of the protocol fee share on every trade you make. |
| thryx_claim_referralA | Claim accumulated referral fees (5% of protocol fees on trades made by accounts you referred). No body required. |
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 21 tools
Most tools have clear, distinct purposes, but thryx_info, thryx_safety_score, and thryx_rug_check all draw from the same token detail endpoint and could be confused. Similarly, thryx_balance and thryx_portfolio overlap somewhat. However, the descriptions are explicit enough that an agent can usually select the right tool.
All tools share a consistent 'thryx_' prefix and use snake_case, making the set predictable. The second part mixes nouns (info, balance) and verbs (buy, sell) rather than a strict verb_noun pattern, but this is a minor deviation given the strong prefix consistency.
With 21 tools, the set is in the 'heavy' range. Each tool does cover a distinct aspect (discovery, analysis, trading, referral, stats), but there is some redundancy among the stats and token-detail tools that could be consolidated without much loss.
The tool surface covers the core workflow: token discovery, analysis, trading, launching, claiming fees, and referral management. Obvious gaps like transaction history or a list of a creator's launched tokens are missing, but these are workaround-able and do not create dead ends.