A hosted Model Context Protocol server at https://mcp.nordva.dev. It gives an AI coding agent 36 tools over your project's changelog, waitlist, feedback and notifications, 21 of them read-only. There is nothing to install or run.
One endpoint, https://mcp.nordva.dev, speaking MCP over Streamable HTTP. The server is stateless: every request is a POST that returns JSON, and there is no session to keep alive.
Authentication is the Authorization header: Bearer followed by a Nordva Launch secret key. The key is forwarded to the REST API on each tool call and is never a tool argument, so it does not end up in transcripts.
The server has no database access of its own. Each tool is a call to api.nordva.dev, so plan limits, validation and error codes are identical to the REST API.
Tools that create something (publish, add to waitlist, invite, submit feedback, send notification) derive an Idempotency-Key from their arguments. An agent that retries the same call does not create a duplicate.
The MCP endpoint allows 120 requests a minute per key and 60 per IP address. The underlying API calls also count against the plan's API limit (30 a minute on Free, 120 on Indie, 500 on Builder).
Errors come back as the API's stable codes (PLAN_LIMIT_REACHED, VALIDATION_ERROR, RATE_LIMITED and so on) with a remediation message, and each tool description tells the agent which errors to retry and which to stop on.
All 36 tools
This list is read from the server's source when the site is built.