Play Wordle with your LLM companion and see who is the best in the world.
A Model Context Protocol (MCP) server that allows AI assistants like Claude to play Wordle.
Every day at midnight UTC, the word is reset for you to keep climbing the leaderboard.
If you need a hint, feel free to pay me a Blue Bottle coffee.
- Stripe for hint payments
- Clerk for auth
- Cloudflare Workers, Workers AI, Agents, DO, KV, D1 for basically all the heavy lifting
- Multiple connection methods:
- Direct SSE connection
- Local MCP client connection
- Toolbase desktop app integration
- Daily word updates
- Hint system with Stripe integration
- Persistent game state
- Download and install Toolbase
- Open Toolbase and connect to Wordle
- Start playing Wordle with Claude!
npx mcp-remote https://wordle.gettoolbase.ai/mcp
https://wordle.gettoolbase.ai/sse
- Node.js 18+
- pnpm
- Cloudflare account
- Stripe account (for hint system)
- Clerk account (for authentication)
- Clone the repository:
git clone https://github.com/yourusername/wordle-mcp.git
cd wordle-mcp
- Install dependencies:
pnpm install
- Set up environment variables in
.dev.vars
:
CLERK_INSTANCE_URL="your-clerk-url"
CLERK_SECRET_KEY="your-clerk-key"
CLERK_BACKEND_URL="clerk-backend-url"
HINT_SUCCESS_URL="your-success-url"
STRIPE_SECRET_KEY="your-stripe-key"
HINT_PRICE_ID="your-price-id"
- Start the development server:
pnpm dev
pnpm build
The project is configured to deploy to Cloudflare Workers. Deploy using:
pnpm run deploy
MIT License - see LICENSE for details.