MCP Hub
Back to servers

@thryx/mcp-server

ThryxProtocol MCP Server — AI Agent Launchpad on Base. Launch tokens, trade, claim fees, check safety scores via Model Context Protocol.

npm494/wk
Stars
1
Updated
Mar 20, 2026

Quick Install

npx -y @thryx/mcp-server

THRYX — The AI Agent Launchpad on Base

Launch tokens for free. Trade gaslessly. Earn daily THRYX rewards. Built for humans and AI agents.

Try it live | Contract | THRYX on DexScreener | MCP Server | CLI | Agents


What is THRYX?

A self-sustaining token ecosystem on Base where creators launch tokens for $0 and earn 70% of every trade. The protocol sponsors all gas fees, rewards users with THRYX tokens daily, and burns THRYX on every trade for deflationary pressure.

400+ tokens launched. 20+ users. $0 cost to anyone. $23K+ THRYX/WETH liquidity on Uniswap V4.


How It Works

  1. Sign up with email + password (10 seconds). Wallet created automatically.
  2. Launch a token — name, ticker, image, done. Gas is sponsored. Earn 10,000 THRYX.
  3. Share your token — anyone can buy/sell on the bonding curve. Twitter cards auto-generated.
  4. Earn 70% of the 0.5% trading fee on every trade. Paid instantly.
  5. Tokens graduate to Uniswap V4 AMM when bonding curve fills — price-continuous liquidity.
  6. Buy/sell THRYX directly on the dashboard via the V4 Doppler pool.

The Flywheel: Trades generate fees → fees fund gas sponsorship → more users trade → more fees → cycle compounds.


For AI Agents

THRYX is built for autonomous operation. 16 MCP tools, npm packages, REST API — no wallet or private key needed for the HTTP API.

HTTP API (No Private Key Needed)

# Sign up — get JWT + wallet
curl -X POST https://thryx-launchpad.onrender.com/api/auth/signup \
  -H "Content-Type: application/json" \
  -d '{"email": "agent@example.com", "password": "secure-password"}'

# Launch a token (gas is free)
curl -X POST https://thryx-launchpad.onrender.com/api/launch \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer <jwt>" \
  -d '{"name": "My Token", "symbol": "MYTKN", "password": "secure-password"}'

# Buy tokens
curl -X POST https://thryx-launchpad.onrender.com/api/tokens/0xTokenAddress/buy \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer <jwt>" \
  -d '{"amount": "0.001", "password": "secure-password"}'

Full API reference at /agents — signup, profile, launch, buy, sell, token list, stats, activity.

MCP Server (Claude, Cursor, Windsurf)

{
  "mcpServers": {
    "thryx": {
      "command": "npx",
      "args": ["-y", "@thryx/mcp-server"],
      "env": { "PRIVATE_KEY": "<your-key>" }
    }
  }
}

16 tools: thryx_launch, thryx_buy, thryx_sell, thryx_claim, thryx_info, thryx_portfolio, thryx_balance, thryx_about, thryx_set_referrer, thryx_claim_referral, thryx_stats_v2, thryx_safety_score, thryx_rug_check, thryx_meta_launch, thryx_paymaster_stats, thryx_recent_tokens

Read-only tools work without any key. For no-key trading, use the HTTP API above.

CLI

npx @thryx/cli launch "My Token" MYTK --key $PRIVATE_KEY
npx @thryx/cli buy 0x...token... 0.001 --with eth --key $PRIVATE_KEY
npx @thryx/cli info 0x...token... --json

vs. The Competition

FeatureTHRYXpump.funClankerVirtuals
Launch costFreeFreeFree~$50+
Gas feesSponsoredUser paysBot coversUser pays
Trading fee0.5%1% / 0.3%1%1%
Creator share70%0.05-0.95%40-80%30%
Wallet neededNoYesYesYes
AI agent tools16 MCP + CLI + HTTP APIThird-party APIFarcaster bot + SDKGAME framework
Daily rewards10K/launch, 1K/tradeNoneNoneNone
Twitter OG cardsAuto-generated per tokenGenericBasicNone
DEX pool detectionAuto (DexScreener + GeckoTerminal)ManualManualNone

Architecture

thryx-launchpad/
  src/                  # React 18 frontend (Vite → Render)
  server/               # Express 4 backend (→ Render)
  contracts/            # Solidity Diamond (ERC-2535, 9 facets)

On-Chain

  • Diamond proxy (ERC-2535) at 0x2F77b40c124645d25782CfBdfB1f54C1d76f2cCe
  • 9 facets: Admin, Swap, Launch, Claim, Views, Rewards, Paymaster, ThryxSwap, DiamondCut
  • Gasless via EIP-712 metaLaunch() + PaymasterFacet
  • Bonding curve (x*y=k) with graduation to Uniswap V4 Token/THRYX pools
  • Self-funding paymaster (auto-sells THRYX for ETH every 5 min)
  • Direct THRYX buy/sell via V4 Doppler pool ($23K liquidity)
  • Daily reward distribution (RewardsFacetV2)

Infrastructure

  • Cloudflare Workers — relay holds private key, handles gasless on-chain writes
  • Render — frontend + API (no private keys)
  • Turso — database (libSQL/SQLite)
  • DexScreener + GeckoTerminal — DEX pool detection for graduated tokens

Fee Structure

FeeAmountRecipient
Trading fee0.5% per tradeSplit below
Creator share70% of feeToken creator (instant)
Paymaster~20% of protocol shareSelf-funding gas
THRYX burn2% of protocol shareDeflationary
Referral5% of protocol shareReferrer
Reserves~3% of protocol shareProtocol operations

Reward System

ActionRewardDaily Cap
Launch a token10,000 THRYX10 per day
Make a trade1,000 THRYX20 per day
Refer a user5% of their trade feesUnlimited

Run Locally

git clone https://github.com/lordbasilaiassistant-sudo/thryx-launchpad.git
cd thryx-launchpad
npm install
cp .env.example .env
npm run dev

Contract Addresses

ContractAddress
ThryxProtocol v2.8 Diamond0x2F77b40c124645d25782CfBdfB1f54C1d76f2cCe
THRYX Token0xc07E889e1816De2708BF718683e52150C20F3BA3
THRYX/WETH V4 Pool0x5a86f04dbd3e6b532e... (DexScreener)
Gasless Relaythryx-relay.thryx.workers.dev

License

MIT


Built by a broke dad of 6 with Claude Code. Not because I had to. Because I wanted to prove anyone can build real on-chain infrastructure with AI.

Reviews

No reviews yet

Sign in to write a review