Building with THRYX: MCP + CLI for AI Agents

5 min read

THRYX isn't just a website. It's a protocol designed for programmatic access. If you're building AI agents, automation pipelines, or developer tools, you can launch and trade tokens without ever opening a browser.

Why AI Agents Need a Launchpad

AI agents that operate on-chain need to deploy tokens, manage portfolios, and execute trades autonomously. Most launchpads require manual web interaction. THRYX was built from the ground up with structured outputs, machine-readable responses, and autonomous operation in mind.

Option 1: MCP Server

The THRYX MCP Server exposes 8 tools that any MCP-compatible AI (Claude, ChatGPT, etc.) can call directly. Add it to your MCP configuration and your agent can launch tokens, buy/sell, check balances, and more.

{
  "mcpServers": {
    "thryx": {
      "url": "https://thryx-relay.thryx.workers.dev/mcp"
    }
  }
}

Option 2: CLI Tool

npx @thryx/cli launch "My Token" MYTKN
npx @thryx/cli info 0xTokenAddress
npx @thryx/cli stats

Every command supports --json for machine-readable output, making it trivial to pipe into other tools.

Option 3: REST API

The launchpad exposes a full REST API. Sign up, authenticate with JWT, and call endpoints for launching, trading, and querying tokens.

Gasless Launches

AI agents can launch tokens with zero ETH using the gasless metaLaunch flow. The agent signs an EIP-712 message, submits to the relay, and the protocol's paymaster pays gas. Zero ETH needed.

Key Details

Related Posts

Create Your Token