avemguvern
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., "@avemguvernwhat is the current government status of Romania?"
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.
avemguvern.ro
A one-question site: does Romania currently have a (full, non-interim) government? Current answer: Nu! — Inca e interimar Bolojan!
Everything runs in a single Cloudflare Worker (free tier):
Static page — minimalist verdict, served from
public/.Public API —
GET /api/status(read),POST /api/status(admin, token-protected).MCP server — read-only
get_government_statustool at/mcp(Streamable HTTP).
State is one Cloudflare KV key (current). If KV is empty the Worker serves
DEFAULT_STATUS from src/index.ts, so it works before seeding.
Project layout
public/index.html # the page (no build step)
src/index.ts # Worker: routes /api/status, /mcp, else static assets
wrangler.jsonc # Worker + assets + KV config
seed.json # initial KV valueRelated MCP server: Proxmox MCP Server
Local development
npm install
npx wrangler devThen:
# read
curl http://localhost:8787/api/status
# MCP: list tools
curl -X POST http://localhost:8787/mcp \
-H 'content-type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
# MCP: call the tool
curl -X POST http://localhost:8787/mcp \
-H 'content-type: application/json' \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"get_government_status"}}'For a local admin token during wrangler dev, create .dev.vars:
ADMIN_TOKEN=some-local-tokenDeploy
npm install
npx wrangler login
# 1. Create the KV namespace, then paste the returned id into wrangler.jsonc
npx wrangler kv namespace create GOV_STATUS
# 2. Set the admin token (used to authorize POST /api/status)
npx wrangler secret put ADMIN_TOKEN
# 3. Deploy
npx wrangler deploy
# 4. (optional) Seed the KV value — default already matches
npm run seedCustom domain
After the first deploy, attach avemguvern.ro in the Cloudflare dashboard
(Workers & Pages → avemguvern-ro → Settings → Domains & Routes), or add to
wrangler.jsonc:
"routes": [{ "pattern": "avemguvern.ro", "custom_domain": true }](DNS for the domain must be on Cloudflare.)
Updating the status
When the political situation changes, patch the status (only send fields that change):
curl -X POST https://avemguvern.ro/api/status \
-H "Authorization: Bearer $ADMIN_TOKEN" \
-H 'content-type: application/json' \
-d '{"hasGovernment": true, "answer": "Da!", "subtitle": "Avem guvern plin!", "interim": false, "primeMinister": "..."}'updatedAt is stamped automatically.
Using the MCP server with Claude
Visit https://avemguvern.ro/mcp in a browser for setup instructions, or add it directly:
claude mcp add --transport http avemguvern https://avemguvern.ro/mcpIt exposes one read-only tool, get_government_status, that returns the current answer
plus the raw status JSON.
Abuse protection
Built into the Worker:
Edge caching —
GET /api/statusis cached at the Cloudflare edge via the Cache API (caches.default) forCACHE_TTL_SECONDS(default 60), so a read flood hits KV at most ~once/minute per data center. A successfulPOSTpurges the cache so updates show immediately. The Cache API is per-colo, so a write purges only the data center that served it; other regions refresh when their TTL expires (hence the modest default — raise it inwrangler.jsoncvars for more offload if you can tolerate longer cross-region staleness after a change).Per-IP rate limiting — native Workers rate-limit bindings: reads 120/min, writes 10/min (the write limit also throttles token guessing). Over-limit →
429.Hardened writes —
POSTonly accepts the known fields (hasGovernment,interim,answer,subtitle,primeMinister) with correct types, clamps strings to 200 chars, rejects bodies over 2 KB (413), and compares the admin token in constant time. A leaked token can't store arbitrary or huge data.
Recommended at the Cloudflare edge (dashboard):
WAF Rate Limiting rule (e.g. per-IP threshold on
/api/*and/mcp) — this is the layer that drops abusive traffic before it counts against your quota.Bot Fight Mode under Security → Bots.
Note: a zone-level Cache Rule cannot bypass the Worker here — for a Worker-owned route the Worker always executes before the cache is checked (docs). The in-Worker Cache API above is the effective edge-cache mechanism; it saves KV operations but each request still counts as one Worker invocation. To cut invocations themselves, use the WAF rate-limit rule.
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/andrei-vintila/avemguvern.ro'
If you have feedback or need assistance with the MCP directory API, please join our Discord server