Back to catalog
Wordle MCP Server
MCP server for retrieving Wordle solutions through the Wordle API for dates from 2021-05-19 to 23 days in the future.
Get this MCP server
MCP server for retrieving Wordle solutions through the Wordle API for dates from 2021-05-19 to 23 days in the future.
Installation
Docker (recommended)
docker pull ghcr.io/cr2007/mcp-wordle-python:latest
uvx
uvx --from git+https://github.com/cr2007/mcp-wordle-python mcp-wordle
Configuration
Docker Configuration
{
"mcpServers": {
"Wordle MCP (Python)": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-e",
"DOCKER_CONTAINER=true",
"ghcr.io/cr2007/mcp-wordle-python:latest"
]
}
}
}
uvx Configuration
{
"mcpServers": {
"Wordle MCP (Python)":{
"command": "uvx",
"args": [
"--from",
"git+https://github.com/cr2007/mcp-wordle-python",
"mcp-wordle"
]
}
}
}
Features
- Retrieve Wordle solutions for specific dates
- Access solutions from 2021-05-19
- Support for solutions up to 23 days in the future
- Containerized deployment via Docker
- Go version available for lighter/faster performance
Environment Variables
Required
DOCKER_CONTAINER- Set to true when running in a Docker container
Notes
Wordle solutions are available only from 2021-05-19 to 23 days in the future. Any attempts to request other dates will return an API error. A Go version is also available for better performance: https://github.com/cr2007/mcp-wordle-go
