lake_level_search
Pack: water-levels · Endpoint: https://gateway.pipeworx.io/water-levels/mcp
Find lakes, seas and reservoirs monitored by satellite altimetry, by name, country or continent. Returns each water body with its target id, country, and whether it is a natural lake or a managed reservoir. Use to discover which inland water bodies have level data before asking for measurements.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | Name fragment, country, or continent — e.g. “Victoria”, “Kazakhstan”, “Africa”. |
limit | number | no | Maximum results (default 25). |
Example call
Arguments
{
"query": "Kenya"
}
curl
curl -X POST https://gateway.pipeworx.io/water-levels/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"lake_level_search","arguments":{"query":"Kenya"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('lake_level_search', {
"query": "Kenya"
});
More examples
{
"query": "Africa"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"water-levels": {
"url": "https://gateway.pipeworx.io/water-levels/mcp"
}
}
}
See Getting Started for client-specific install steps.