Skip to main content
Glama
agentdanger

wordle-solver

by agentdanger

Wordle Solver MCP Server

An MCP (Model Context Protocol) server that gives AI assistants governed access to a production analytics microservice: the entropy-based Wordle solver that powers the interactive demo on courtneyperigo.com.

This repo is the companion demo for the article "Your Analytics Microservices Have a New Customer" — a sequel to Get More Out of Your Data with Analytics Microservices (Towards Data Science, 2022). The 2022 argument: put your analytics behind independently deployable, domain-bound services. The 2026 payoff: the highest-volume consumer of a well-built analytics service is now an AI agent — and MCP is the standardized communication layer that article said was the pattern's biggest cost.

                       2022                                2026
┌──────────┐    ┌──────────────────┐      ┌───────────┐    ┌──────────────────┐
│ Web UI   │───▶│  Solver API      │      │ AI agent  │───▶│  MCP server      │
│ (Vue)    │    │  (FastAPI on     │      │ (Claude,  │    │  (this repo)     │
└──────────┘    │   App Engine)    │      │  etc.)    │    └────────┬─────────┘
                └──────────────────┘      └───────────┘             │
                                                                    ▼
                                                          ┌──────────────────┐
                                                          │  Same solver API │
                                                          │  — unchanged     │
                                                          └──────────────────┘

The microservice didn't change. It gained a new kind of customer.

What the solver does

The upstream service ranks every legal Wordle guess by expected information gain (measured in bits) against the words still consistent with the game's feedback. It knows the official NYT allowed-guess and answer lists, and reports game state as uncertainty in bits. It's a FastAPI app on Google App Engine with Cloud Build CI/CD — a small but real production analytics service, built originally for a website UI, long before agents.

Related MCP server: multivon-mcp

Tools

Tool

When the agent should call it

get_game_stats

At the start of a game — dictionary size, answer count, starting uncertainty, and suggested opening words

recommend_guesses

After each guess — pass the full guess history with color feedback (g/y/x per letter); returns ranked recommendations, best eligible answers, and updated game state

Resources

Resource

Contents

wordle://methodology

How the ranking works (lower bits = better), what the two ranked lists mean, how to read uncertainty — so the assistant explains recommendations correctly instead of guessing

Design notes (the part that generalizes beyond Wordle)

  1. Tools accept the agent's representation, not the API's. The upstream API wants position-wise constraint lists (green_letters, per-position yellow exclusions, duplicate caps). Agents think in guesses: "I played CRANE and got gray-yellow-gray-green-gray." The translation — including the subtle duplicate-letter rules — lives in constraints.py, tested in test_constraints.py. Don't make the model do bookkeeping code can do.

  2. Tool descriptions say when to call, not just what. The descriptions steer the agent away from a known-expensive call path (scoring the full dictionary with no constraints) and toward the cheap one.

  3. Responses are shaped for context economy. The API returns 100 recommendations; the tool returns 10 plus the answer-eligible shortlist. An agent's context window is a cost center.

  4. Documentation is served, not linked. The methodology resource travels with the tools, so the assistant's explanations are grounded in how the solver actually works.

Install & run

Requires Python 3.10+ and uv (or plain pip).

git clone https://github.com/agentdanger/wordle-mcp-server.git
cd wordle-mcp-server
uv sync          # or: pip install -e .
uv run server.py # starts the server on stdio

Claude Code

claude mcp add wordle-solver -- uv --directory /path/to/wordle-mcp-server run server.py

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "wordle-solver": {
      "command": "uv",
      "args": ["--directory", "/path/to/wordle-mcp-server", "run", "server.py"]
    }
  }
}

Point at a different deployment of the solver with WORDLE_API_BASE.

Try it

Ask your assistant:

I'm playing Wordle. I opened with CRANE and got: C gray, R yellow, A gray, N green, E gray. What should I play next?

The assistant calls recommend_guesses(words=["crane"], feedback=["xyxgx"]) and reasons over ranked, real solver output instead of guessing.

Tests

uv run pytest

License

MIT

Install Server
A
license - permissive license
A
quality
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

View all related MCP servers

Related MCP Connectors

View all MCP Connectors

Latest Blog Posts

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/agentdanger/wordle-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server