
โ labsco summary โ our analysis, not the vendor's
What it is โ a small MCP server, written in Go, that fetches the daily Wordle solution via the official Wordle API for use in Claude Desktop.
What you get โ
- Daily Wordle answer lookups by date
- Runs as a Docker container or a local Go build
- Simple client config (Docker
runblock or path to the built binary)
Requirements โ nothing external โ no API keys or accounts; just Docker (recommended) or Go installed.
Cost snapshot โ free and open source (license unspecified in metadata). Uses the public Wordle API at no cost.
Setup effort โ Docker one-liner via ghcr.io/cr2007/mcp-wordle-go:latest, or clone and go build.
Our take โ A fun, tiny toy; the real limit is data โ solutions are only available from 2021-05-19 to 23 days in the future, and any other date returns an API error.
Source: the project README โ summarized 2026-07-08.
โ readme from github โ mirrored (latest on GitHub โ)
Wordle MCP - Go
[!NOTE] To check out the Python version of this MCP Server, click here
A MCP Server implemented in Go for fetching the Wordle solutions via the Wordle API.
[!IMPORTANT] Wordle solutions are only available from 2021-05-19, to 23 days in the future.
Any other attempts at calling other dates will return an error from the API
Index
Get Started
Using Docker (recommended)
The quickest and easiest method to get started. Ensure that you have Docker installed.
Add this to your MCP Server configuration:
{
"mcpServers": {
"Wordle-MCP-Go": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-e",
"DOCKER_CONTAINER=true",
"ghcr.io/cr2007/mcp-wordle-go:latest"
]
}
}
}[!IMPORTANT] If you get an error on Claude Desktop for the first time, just make sure to pull the image before running.
docker pull ghcr.io/cr2007/mcp-wordle-go:latest
{
"mcpServers": {
"Wordle-MCP-Go": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-e",
"DOCKER_CONTAINER=true",
"ghcr.io/cr2007/mcp-wordle-go:latest"
]
}
}
}Local Setup
For this setup, you need to make sure that you have the Go programming language installed on your machine.
Setup
Before adding this to your MCP Server, you need to do the following:
# Clone the Git repository
git clone https://github.com/cr2007/mcp-wordle-go
cd mcp-wordle-go
# Install the dependencies
go mod tidy
# Build the executable
go build main.goAdd this to your MCP server configuration:
{
"mcpServers": {
"Wordle-MCP-Go":{
"command": "ABSOLUTE//PATH//TO//main.go",
}
}
}Examples on Claude Desktop
Contributing
Contributions are welcome! You may fork the repo, create your changes in a branch, and then create a Pull Request
No common issues documented yet. If you hit a problem, the repository's GitHub Issues page is the best place to look.