Command Palette

Search for a command to run...

UnylyUnyly
Browse all

Surfline

FreeNot checked

Surfline — Model Context Protocol server

GitHubEmbed

About

Surfline — Model Context Protocol server

README

A Model Context Protocol (MCP) server that provides comprehensive surf forecasts from Surfline's API. Access detailed surf conditions, swell analysis, forecaster insights, tides, and more directly through Claude or any MCP-compatible client.

Features

🌊 Comprehensive Surf Data

  • Current conditions for 11 Santa Cruz spots (easily extensible to other regions)
  • Detailed swell breakdown (height, period, direction, power for each swell component)
  • 8-hour hourly forecasts showing how conditions evolve
  • Expert forecaster observations with AM/PM specific timing advice
  • Wind conditions (speed, direction, offshore/onshore classification)
  • Quality ratings (1-5 stars)

🌅 Timing Information

  • Sunrise, sunset, dawn, and dusk times
  • Tide schedule with high/low times and heights
  • All times properly converted to Pacific timezone

🔐 Secure Authentication

  • Google OAuth integration for secure access
  • Works seamlessly with claude.ai web and mobile
  • No Surfline API keys required (uses public endpoints)

Quick Start

Prerequisites

  • Node.js 18+
  • A Cloudflare account (free tier works)
  • A Google Cloud project for OAuth (free)

Installation

  1. Clone and install dependencies: ```bash cd surfline-mcp-server npm install ```

  2. Set up Google OAuth:

  3. Create a KV namespace: ```bash npx wrangler kv namespace create OAUTH_KV ``` Update `wrangler.jsonc` with the returned KV ID.

  4. Set secrets: ```bash echo 'YOUR_GOOGLE_CLIENT_ID' | npx wrangler secret put GOOGLE_CLIENT_ID echo 'YOUR_GOOGLE_CLIENT_SECRET' | npx wrangler secret put GOOGLE_CLIENT_SECRET echo $(openssl rand -hex 32) | npx wrangler secret put COOKIE_ENCRYPTION_KEY ```

  5. Deploy: ```bash npm run deploy ```

Connect to Claude

  1. Go to claude.ai
  2. Navigate to Settings → Integrations
  3. Add your deployed worker URL: `https://your-worker-name.your-subdomain.workers.dev/mcp\`
  4. Authenticate with Google
  5. Ask Claude: "How's the surf in Santa Cruz?"

Available Tools

`get_complete_surf_report`

Primary tool - Returns everything in one call:

  • Forecaster notes with expert observations
  • Sunrise/sunset times
  • Tide schedule
  • Current conditions for all spots
  • Swell breakdown
  • 8-hour forecasts

Secondary Tools

Individual data fetchers available if you need specific information:

  • `get_surf_forecast` - Basic spot conditions only
  • `get_forecaster_notes` - Human observations only
  • `get_tides` - Tide information only
  • `get_best_spot` - Ranked recommendations

Spots Covered

North County: Davenport, Waddell Creek, Four Mile, Three Mile
Central: Steamer Lane, Cowells, 26th Ave
East Side: Pleasure Point, Jack's, The Hook
South: Capitola

Data Source

This server uses Surfline's undocumented public API endpoints - the same ones their website uses. No API keys or authentication required for basic forecast data. The endpoints have been stable for years and are widely used by the surf community.

Important: Webcams and premium features are not available through these endpoints.

Extending to Other Regions

To add more spots, edit `src/index.ts` and add to the `SANTA_CRUZ_SPOTS` object:

```typescript const SANTA_CRUZ_SPOTS: Record<string, string> = { "Your Spot Name": "spotIdFromSurfline", // ... }; ```

Find spot IDs by inspecting network requests on surfline.com.

Architecture

  • Cloudflare Workers: Serverless hosting (free tier: 100k requests/day)
  • Durable Objects: OAuth state management
  • KV Storage: Token persistence
  • Google OAuth: Secure authentication
  • MCP Protocol: Standard tool interface for AI assistants

Development

Run locally: ```bash npm run dev ```

The server will be available at `http://localhost:8788\`

Test with MCP Inspector: ```bash npx @modelcontextprotocol/inspector ```

License

MIT

Acknowledgments

  • Surfline for providing accessible surf forecast data
  • Cloudflare for the MCP and OAuth libraries
  • The surf community for documenting the API endpoints

from github.com/englishar/surfline-mcp-server

Installing Surfline

This server has no published package — it is built from source. Open the repository and follow its README.

▸ github.com/englishar/surfline-mcp-server

FAQ

Is Surfline MCP free?

Yes, Surfline MCP is free — one-click install via Unyly at no cost.

Does Surfline need an API key?

No, Surfline runs without API keys or environment variables.

Is Surfline hosted or self-hosted?

Self-hosted: the server runs locally on your machine via the install command above.

How do I install Surfline in Claude Desktop, Claude Code or Cursor?

Open Surfline on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

Compare Surfline with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All development MCPs