Rain Check
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., "@Rain CheckCan a plumber work in Bendigo tomorrow?"
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.
Rain Check
A remote MCP server that answers whether an Australian field-service job can be worked at a place on a day, for a given trade, from live forecast, daylight and public holiday data.
Live: https://rain-check-mu.vercel.app MCP endpoint: https://rain-check-mu.vercel.app/mcp OpenAPI: https://rain-check-mu.vercel.app/openapi.json Health: https://rain-check-mu.vercel.app/health
Connect it
claude mcp add --transport http rain-check https://rain-check-mu.vercel.app/mcpAny MCP client that speaks Streamable HTTP can use the same URL. It is POST only: the server is stateless, so GET and DELETE answer 405 by design.
For anything that does not speak MCP, the identical operations are at
/v1/<operation> and described by /openapi.json, which is generated from the
same constants the MCP tools use so the two cannot drift.
Related MCP server: au-weather-mcp
Run it locally
npm install
npm run typecheck # tsc, no emit
npm run smoke # every operation against the real upstreams
npm run smoke:mcp # every endpoint over a real node:http server
npm run smoke:live -- https://rain-check-mu.vercel.app # the deployed server
npm run adversarial -- https://rain-check-mu.vercel.app # tries to break it
npm run prove -- https://rain-check-mu.vercel.app # independent evidenceThere are no mocks anywhere. The point of these is to catch an upstream changing shape, and a mock never will.
npm run adversarial is the one that finds things. It throws nonsense ranges,
hostile strings, wrong types, foreign coordinates and malformed protocol frames
at the deployed server; a refusal with a usable message passes, a 500 or a
confident answer to a question it should not answer fails. It found three real
bugs the happy-path suites had missed.
Checking it without trusting this repository
npm run prove exists because my own tests passing proves very little to
someone who did not write them. It connects with the official MCP client SDK,
then takes every number the server reported and re-fetches the same day straight
from Open-Meteo, comparing field by field, and prints the upstream URL it used
so you can open it yourself.
Three more ways, needing nothing from here:
# Anthropic's own inspector, not my code
npx @modelcontextprotocol/inspector --cli https://rain-check-mu.vercel.app/mcp --transport http --method tools/list
# raw JSON-RPC, no client, no session, because it is stateless
curl -s -X POST https://rain-check-mu.vercel.app/mcp -H 'Content-Type: application/json' -H 'Accept: application/json, text/event-stream' -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
# let your own client run its health check against it
claude mcp add --transport http rain-check https://rain-check-mu.vercel.app/mcp
claude mcp listAnd the version that needs only a browser: open both of these and compare the
dates. rain_mm in the first equals precipitation_sum in the second.
Deploy
vercel deploy --prodHow it is laid out
src/core.ts the six operations, with no transport in them
src/mcpServer.ts the MCP tool surface
src/lib/ http, dates, geocoding, forecast, holidays, thresholds, verdicts
api/mcp.ts Streamable HTTP, stateless
api/v1/[op].ts the same operations over REST
api/openapi.ts the OpenAPI document, generated from the same constants
api/health.ts calls every upstream and reports real latency
public/index.html the landing page, including the build log
scripts/ the three verification runsBoth front doors import src/core.ts. That is the only way the custom GPT and
the MCP client can be trusted to give the same answer, and it means a threshold
fixed once is fixed everywhere.
What it will not do
Present a threshold as a safety clearance. They are planning defaults, shown in every answer and overridable per call.
Guess past the sixteen-day forecast. Later dates come back in
out_of_rangewith the reason and no data.Let third-party holiday data pass as authoritative. It is state level only, carries no regional or show days, and every response links the official state government page.
Fill a gap with a guess. When an upstream is unreachable the tool says which one and what to do, and tells the model not to substitute an opinion.
Pick between two Richmonds. Ambiguity comes back as candidates.
Data sources
Weather and geocoding: Open-Meteo, CC BY 4.0.
Public holidays: Nager.Date, third party, state level only.
The Bureau of Meteorology's API is not used: its own terms say "You must not use, copy or share it".
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.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceProvides real-time weather information and multi-day forecasts using the Open-Meteo API through a robust, enterprise-grade architecture. It enables AI assistants to retrieve current conditions, 7-day forecasts, and contextual weather data for any location.17MIT
- AlicenseAqualityBmaintenanceProvides LLMs with real-time, historical, and forecast Australian weather data via Open-Meteo, using plain-English location keys and fuzzy search.7MIT
- AlicenseAqualityAmaintenanceProvides deterministic business-day calculations for AI agents, correctly handling country-specific weekends and public holidays.6651Apache 2.0
- FlicenseAqualityDmaintenanceProvides verified ANZ public holidays, school terms, and business-day calculations for all 9 regions of Australia and New Zealand, backed by data for 2026 and 2027.3
Related MCP Connectors
Agentic scheduling & booking for field service: availability, jobs, customers, crews, fleet.
Manage jobs, customers, scheduling, estimates and invoices for a field service business.
Business-day, SLA, cron and recurrence calculations — offline, holiday-aware, no network.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/Aa-ronJS/rain-check'
If you have feedback or need assistance with the MCP directory API, please join our Discord server