{"id":29885817,"url":"https://github.com/cr2007/mcp-wordle-go","last_synced_at":"2025-10-05T16:55:36.318Z","repository":{"id":305811737,"uuid":"1010950564","full_name":"cr2007/mcp-wordle-go","owner":"cr2007","description":"MCP Server in Go for fetching Wordle solutions","archived":false,"fork":false,"pushed_at":"2025-10-05T14:00:51.000Z","size":9,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-10-05T15:29:27.541Z","etag":null,"topics":["mcp-go","mcp-servers","wordle-api","wordle-solution"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cr2007.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-06-30T04:52:42.000Z","updated_at":"2025-10-05T14:00:54.000Z","dependencies_parsed_at":"2025-07-22T06:40:33.251Z","dependency_job_id":"a0e577c2-693d-4c9a-a541-7a60c25a54fa","html_url":"https://github.com/cr2007/mcp-wordle-go","commit_stats":null,"previous_names":["cr2007/mcp-wordle-go"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/cr2007/mcp-wordle-go","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cr2007%2Fmcp-wordle-go","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cr2007%2Fmcp-wordle-go/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cr2007%2Fmcp-wordle-go/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cr2007%2Fmcp-wordle-go/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cr2007","download_url":"https://codeload.github.com/cr2007/mcp-wordle-go/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cr2007%2Fmcp-wordle-go/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278486278,"owners_count":25994941,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-05T02:00:06.059Z","response_time":54,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["mcp-go","mcp-servers","wordle-api","wordle-solution"],"created_at":"2025-07-31T16:02:53.240Z","updated_at":"2025-10-05T16:55:36.301Z","avatar_url":"https://github.com/cr2007.png","language":"Go","funding_links":[],"categories":["Other Tools and Integrations"],"sub_categories":["How to Submit"],"readme":"\u003c!-- omit from toc --\u003e\n# Wordle MCP - Go\n\n[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/cr2007/mcp-wordle-go)\n\n\u003e [!NOTE]\n\u003e To check out the Python version of this MCP Server, [click here](https://github.com/cr2007/mcp-wordle-python)\n\nA MCP Server implemented in Go for fetching the Wordle solutions via the Wordle API.\n\n\u003e [!IMPORTANT]\n\u003e Wordle solutions are only available from 2021-05-19, to 23 days in the future.\u003cbr\u003e\n\u003e Any other attempts at calling other dates will return an error from the API\n\n\u003c!-- omit from toc --\u003e\n# Index\n- [Get Started](#get-started)\n  - [Using Docker (recommended)](#using-docker-recommended)\n  - [Local Setup](#local-setup)\n    - [Setup](#setup)\n- [Examples on Claude Desktop](#examples-on-claude-desktop)\n- [Contributing](#contributing)\n\n---\n\n# Get Started\n\n## Using Docker (recommended)\n\nThe quickest and easiest method to get started. Ensure that you have [Docker](https://www.docker.com) installed.\u003cbr\u003e\nAdd this to your MCP Server configuration:\n\n```json\n{\n  \"mcpServers\": {\n    \"Wordle-MCP-Go\": {\n      \"command\": \"docker\",\n      \"args\": [\n        \"run\",\n        \"--rm\",\n        \"-i\",\n        \"--init\",\n        \"-e\",\n        \"DOCKER_CONTAINER=true\",\n        \"ghcr.io/cr2007/mcp-wordle-go:latest\"\n      ]\n    }\n  }\n}\n```\n\n\u003e [!IMPORTANT]\n\u003e If you get an error on Claude Desktop for the first time, just make sure to pull the image before running.\u003cbr\u003e\n\u003e `docker pull ghcr.io/cr2007/mcp-wordle-go:latest`\n\n## Local Setup\n\nFor this setup, you need to make sure that you have the [Go programming language](https://go.dev/) installed on your machine.\n\n### Setup\n\nBefore adding this to your MCP Server, you need to do the following:\n\n```bash\n# Clone the Git repository\ngit clone https://github.com/cr2007/mcp-wordle-go\ncd mcp-wordle-go\n\n# Install the dependencies\ngo mod tidy\n\n# Build the executable\ngo build main.go\n```\n\nAdd this to your MCP server configuration:\n\n```json\n{\n  \"mcpServers\": {\n    \"Wordle-MCP-Go\":{\n        \"command\": \"ABSOLUTE//PATH//TO//main.go\",\n      }\n  }\n}\n```\n\n# Examples on Claude Desktop\n\n\u003cdiv align=\"center\"\u003e\n    \u003cimg width=75%, src=\"./images/Claude_Chat-Example.png\"\u003e\n\u003c/div\u003e\n\n# Contributing\n\nContributions are welcome! You may [fork](https://github.com/cr2007/mcp-wordle-go/fork) the repo, create your changes in a branch, and then create a [Pull Request](https://github.com/cr2007/mcp-wordle-go/compare)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcr2007%2Fmcp-wordle-go","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcr2007%2Fmcp-wordle-go","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcr2007%2Fmcp-wordle-go/lists"}