- Home
- MCP servers
- Wordle MCP Go Server
Wordle MCP Go Server
- go
3
GitHub Stars
go
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"cr2007-mcp-wordle-go": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-e",
"DOCKER_CONTAINER=true",
"ghcr.io/cr2007/mcp-wordle-go:latest"
]
}
}
}You can run a Wordle solutions MCP server built in Go to fetch Wordle solutions via the Wordle API. It’s designed to be easy to run locally or in a container, so you can quickly experiment with Wordle data inside your MCP client workflows.
How to use
You run the Wordle MCP Go server as an MCP endpoint that your MCP client can connect to. Two practical ways to start it are via Docker or as a local Go build. When running through Docker, a self-contained container serves Wordle solutions. When running locally, you compile and launch the Go binary on your machine. Choose the method that fits your workflow, then connect your MCP client to the server name you configured.
How to install
Prerequisites you need before you begin:
Docker method prerequisites: you must have Docker installed on your machine.
Go method prerequisites: you must have the Go programming language installed on your machine.
Wordle MCP Go server configuration with Docker
{
"mcpServers": {
"wordle_mcp_go": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-e",
"DOCKER_CONTAINER=true",
"ghcr.io/cr2007/mcp-wordle-go:latest"
]
}
}
}
Wordle MCP Go server configuration with local Go build
{
"mcpServers": {
"wordle_mcp_go_alt":{
"command": "ABSOLUTE//PATH//TO//main.go",
"args": []
}
}
}
Notes and limitations
Wordle solutions are only available from 2021-05-19, up to 23 days in the future. Requests for other dates will return an error from the API.
Available tools
WordleApiFetcher
Fetches Wordle solutions from the Wordle API for requested dates and returns data suitable for MCP clients.