A water graph agents can query, cite and call.
The machine layer ships with the site, not bolted on: a public REST API, a Model Context Protocol (MCP) server, RSS/JSON feeds and llms.txt. Open by default, free — retrieval infrastructure for the AI ecosystem.
REST API v1
JSON over HTTPS, open CORS, no key required for the public read layer. Base path /api/v1.
$ curl https://wateratlas.ai/api/v1/companies?region=apac&wics=02
{
"meta": { "count": 8, "license": "CC0-1.0" },
"results": [
{
"name": "Toray Industries",
"nativeName": "東レ株式会社",
"country": "Japan",
"wics": ["02", "02.1", "02.2", "02.3"],
"tier": 1,
"href": "/api/v1/companies/toray-industries"
}
]
}MCP Server
A Model Context Protocol server exposes the water graph as callable tools — so WaterAtlas becomes the water tool inside Claude, ChatGPT and Copilot workflows.
$ claude mcp add --transport http \
wateratlas https://wateratlas.ai/api/mcp{
"mcpServers": {
"wateratlas": {
"type": "http",
"url": "https://wateratlas.ai/api/mcp"
}
}
}Endpoint: POST /api/mcp — streamable HTTP transport. Anonymous access allows 120 requests per minute with a 240-request burst. Administratively issued keys use X-WaterAtlas-API-Key and carry declared per-minute and daily quotas; unknown keys are refused. No self-serve issuance yet.
X-WaterAtlas-API-Key: wa_live_<issued-key>
Every other surface an agent expects
Structured data is CC0 1.0 (Wikidata-aligned), prose is CC BY-SA 4.0, and the WICS taxonomy is CC BY 4.0. The public read layer is open by default — visibility over toll. Bulk and premium endpoints will be metered for verified high-volume consumers (§8.1).