Skip to main content
Glama
agentdanger

wordle-solver

by agentdanger

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
WORDLE_API_BASENoPoint at a different deployment of the solver

Capabilities

Features and capabilities supported by this server

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
get_game_statsA

Get the state of a Wordle game before any guess has been made.

Call this at the START of a game, before the first guess: it returns the size of the guess dictionary, how many words are eligible answers, and the starting uncertainty in bits. Do not call recommend_guesses with an empty guess history - scoring the full dictionary is too expensive, so open with a standard high-information first word instead.

recommend_guessesA

Get ranked next-guess recommendations for an in-progress Wordle game.

Call this AFTER each guess, passing the full game so far: every guessed word and its color feedback, in order. Feedback is one string per guess, one character per letter: 'g' green (right letter, right spot), 'y' yellow (in the word, wrong spot), 'x' gray (not in the word).

Example: the guess CRANE showing gray-yellow-gray-green-gray is words=["crane"], feedback=["xyxgx"].

Returns the top recommendations ranked by expected information gain (lower bits = better guess), the best guesses that are also eligible answers, and game-state statistics including remaining possibilities and uncertainty in bits. Prefer a word from best_answers when few answers remain; prefer best_overall when many remain and you want to maximize information.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription
methodologyHow the solver ranks guesses - read before explaining recommendations.

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