Worcadian MCP Service
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Worcadian MCP ServiceCheck if the words 'apple', 'banana', 'grape' are valid."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Worcadian MCP Service
An MCP server, built with FastAPI, that wraps the
Worcadian JSON-RPC game server API (https://worcadian.vercel.app/rpc,
spec) as a set of MCP
tools. Designed to be deployed as a Python serverless function on Vercel.
What it exposes
The service speaks MCP over Streamable HTTP at /mcp, with three tools:
MCP tool | Upstream JSON-RPC method | Arguments | Returns |
|
|
|
|
|
| none |
|
|
|
|
|
A plain GET /healthz route is also available for uptime checks.
Related MCP server: openapi-to-mcp
How it works
app/worcadian_client.py— a minimal async JSON-RPC client (httpx) forhttps://worcadian.vercel.app/rpc. Upstreamerrorresponses are raised asWorcadianRPCError.app/mcp_server.py— aFastMCPinstance with the three tools above, each a thin wrapper around the client. Runs instateless_httpmode, since Vercel functions don't persist MCP session state between invocations, and with DNS rebinding protection explicitly disabled (that protection defaults to allowing onlylocalhost/127.0.0.1Host headers, which would reject every request once deployed on a real domain).app/server.py— the FastAPI app. It mounts the MCP app (which already serves/mcpby default) at the root, and wires itslifespanto start/stop the MCP session manager (required even in stateless mode, and not handled automatically by Starlette'sMount).api/index.py— the Vercel entrypoint; re-exports the FastAPIapp.
Running locally
cd worcadian-mcp
python3 -m venv .venv && source .venv/bin/activate
pip install -r requirements-dev.txt
uvicorn app.server:app --reloadThe MCP endpoint is then available at http://127.0.0.1:8000/mcp. Point an MCP client
(Claude, Cursor, etc.) at that URL using its HTTP/Streamable-HTTP MCP server transport.
Testing
pip install -r requirements-dev.txt
pytestUnit tests in tests/test_worcadian_client.py and tests/test_mcp_tools.py mock the
upstream HTTP call (via respx), so they run offline.
tests/manual_smoke_test.py is not part of the automated suite — it makes real calls to
the live Worcadian API (and optionally a deployed instance of this service) for a quick
human sanity check:
python tests/manual_smoke_test.py
# or, against a deployed MCP server:
MCP_BASE_URL=https://your-deployment.vercel.app python tests/manual_smoke_test.pyDeploying to Vercel
cd worcadian-mcp
vercel deployvercel.json routes all requests to api/index.py via the Python ASGI runtime. No
environment variables are required — the upstream API has no authentication.
After deploying, the MCP endpoint is https://<your-project>.vercel.app/mcp.
Out of scope
Only the three methods above are wrapped. The upstream API documents several other
methods (board.submit, analyse, seedwords.check, checkin.*, the 14 Numbers game,
etc.) that are not exposed by this service.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
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/whatgamestudios/mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server