Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Provides Canadian tide predictions from the IWLS API, enabling retrieval of 7-day tide forecasts and station listings for monitoring stations across Canada.

README.md

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 station
  • list_stations - List available tide monitoring stations with filtering options

Installation

  1. Clone or download this repository
   git clone <repository-url>
   cd bc-tide-mcp-server
  1. Install dependencies
   pip install -r requirements.txt
   # or using uv
   uv sync

Usage

Running the Server

Development mode (stdio): ``bash python main.py ``

Using uv: ``bash uv run main.py ``

Integration 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: ``json { "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 name
  • operating_only (optional, default: true): Only return currently operating stations
  • limit (optional, default: 20): Maximum number of stations to return (1-100)

Returns: ``json { "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.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Observability servers.