BC Water Tides MCP Server
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., "@BC Water Tides MCP ServerGet the tide forecast for Point Atkinson"
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.
BC Water Tides MCP Server
A Model Context Protocol (MCP) server that provides access to Canadian tide predictions from the Integrated Water Level System (IWLS) API. This server enables AI applications to retrieve tide forecasts for monitoring stations across Canada.
Features
Tools
get_tide_forecast- Get 7-day tide height predictions for a specific stationlist_stations- List available tide monitoring stations with filtering options
Related MCP server: LocalTides MCP Server
Installation
Clone or download this repository
git clone <repository-url> cd bc-tide-mcp-serverInstall dependencies
pip install -r requirements.txt # or using uv uv sync
Usage
Running the Server
Development mode (stdio):
python main.pyUsing uv:
uv run main.pyIntegration with Claude Desktop
Add to your Claude Desktop configuration file (claude_desktop_config.json):
{
"mcpServers": {
"bc-tides": {
"command": "python",
"args": ["/absolute/path/to/bc-tide-mcp-server/main.py"]
}
}
}Or using uv:
{
"mcpServers": {
"bc-tides": {
"command": "uv",
"args": ["run", "--directory", "/absolute/path/to/bc-tide-mcp-server", "main.py"]
}
}
}API Reference
Tools
get_tide_forecast
Get 7-day tide height forecast for a Canadian monitoring station.
Parameters:
station_name(required): The name of the monitoring station (e.g., "Point Atkinson", "Vancouver", "Victoria"). Partial matching is supported.
Returns:
{
"success": true,
"station": {
"name": "Point Atkinson",
"id": "5cebf1de3d0f4a073c4bbcef",
"code": "07795",
"latitude": 49.3299,
"longitude": -123.2633,
"operating": true
},
"time_range": {
"from": "2024-01-01T00:00:00Z",
"to": "2024-01-08T00:00:00Z"
},
"resolution": "SIXTY_MINUTES (hourly)",
"total_predictions": 168,
"forecasts": [
{
"timestamp": "2024-01-01T00:00:00Z",
"water_level_meters": 3.42,
"qc_flag": "2"
}
]
}list_stations
List available tide monitoring stations.
Parameters:
search_term(optional): Filter stations by nameoperating_only(optional, default: true): Only return currently operating stationslimit(optional, default: 20): Maximum number of stations to return (1-100)
Returns:
{
"success": true,
"search_term": "vancouver",
"operating_only": true,
"total_matching": 3,
"stations": [
{
"name": "Point Atkinson",
"alternative_name": null,
"id": "5cebf1de3d0f4a073c4bbcef",
"code": "07795",
"latitude": 49.3299,
"longitude": -123.2633,
"operating": true
}
]
}Example Station Names
Point Atkinson (near Vancouver)
Victoria
Tofino
Prince Rupert
Nanaimo
Campbell River
Data Source
This server uses the Integrated Water Level System (IWLS) API provided by Fisheries and Oceans Canada (DFO-MPO).
API Base URL: https://api-iwls.dfo-mpo.gc.ca/api/v1
Example Usage in Claude
After setting up the server, you can use it in Claude Desktop:
"What are the tide predictions for Point Atkinson for the next week?"
"List all tide stations near Victoria"
"Get the tide forecast for Tofino"License
This project is licensed under the MIT License.
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
- AlicenseBqualityDmaintenanceFetches tide information for any location using latitude and longitude, providing detailed tide data including high/low tides and station information with automatic UTC time zone handling.Last updated119MIT
- AlicenseBqualityBmaintenanceThis server provides tools for interacting with the NOAA Tides and Currents API, enabling access to water level data, tide predictions, currents data, station information, and astronomical information like moon phases and sun times.Last updated24945MIT
- Alicense-qualityDmaintenanceProvides access to Hong Kong climate and weather data from the Hong Kong Observatory, including current conditions, forecasts, warnings, tides, and more.Last updated6MIT
- Flicense-qualityBmaintenanceMCP server that provides tide predictions, station lookup, and tidal event alerts for US coastal locations using live NOAA data.Last updated
Related MCP Connectors
Find NOAA tide stations and NDBC buoys, fetch tide predictions, currents, and live conditions.
NOAA Tides & Currents — observations, predictions, datums, station metadata
Pirate Weather forecast API (Dark Sky-compatible). Free key required.
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/kykoay/BCTideMCPServerLocal'
If you have feedback or need assistance with the MCP directory API, please join our Discord server