Skip to main content
ClaudeWave

Official PickADive MCP server — live dive-conditions, seasonality, and site data for AI agents. Free, read-only, hosted at pickadive.com/mcp

MCP ServersOfficial Registry0 stars0 forksJavaScriptMITUpdated today
ClaudeWave Trust Score
95/100
Verified
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Last scanned: 8/26/2026
Install in Claude Code / Claude Desktop
Method: NPX · mcp-remote
Claude Code CLI
claude mcp add pickadive-mcp -- npx -y mcp-remote
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "pickadive-mcp": {
      "command": "npx",
      "args": ["-y", "mcp-remote"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Use cases

MCP Servers overview

<div align="center">

# PickADive MCP Server

**Live dive-conditions data for AI agents — forecast windows, best-time
climatology, marine-life seasonality, and site facts for 4,800+ dive
sites worldwide.**

[![Status](https://img.shields.io/badge/status-live-2EC4B6)](https://pickadive.com/mcp)
[![MCP Registry](https://img.shields.io/badge/registry-com.pickadive%2Fmcp-0A2540)](https://registry.modelcontextprotocol.io)
[![Transport](https://img.shields.io/badge/transport-Streamable_HTTP-0A2540)](#transport--limits)
[![Auth](https://img.shields.io/badge/auth-none_required-2EC4B6)](#setup)
[![Price](https://img.shields.io/badge/price-free-2EC4B6)](#limits)

**Hosted at `https://pickadive.com/mcp` — nothing to install**

[Setup](#setup) · [Tools](#tools) · [What you can do](#what-can-you-do-with-it) ·
[Data & honesty](#data--honesty) · [Security](#security) · [Support](#support--feedback)

</div>

---

## What can you do with it?

- **"Where can I dive near Boston this Saturday?"** — ranked favorable and
  moderate forecast windows near any place for any day, with wave height,
  wind, timing, and site links.
- **"When should I book Komodo?"** — month-by-month climatology for a
  destination: the share of days historically favorable, typical water
  temperature and seas, and marine-life season windows.
- **"When and where do whale sharks peak?"** — species seasonality from
  236k+ recorded GBIF sightings: peak month and regional season windows.
- **"How deep is Molasses Reef, and what are the hazards?"** — public facts
  for any named dive site: depths, difficulty, shore/boat access, hazards,
  entry and exit notes.
- **"Where in the world is good for diving right now?"** — regions ranked
  by favorable windows over the next ~72 hours.

## Setup

Add the server to any MCP-compatible client — no key, no OAuth:

```json
{
  "mcpServers": {
    "pickadive": { "url": "https://pickadive.com/mcp" }
  }
}
```

| Client | How |
|---|---|
| **Claude Code** | `claude mcp add --transport http pickadive https://pickadive.com/mcp` |
| **Claude.ai / Desktop** | Settings → Connectors → Add custom connector → `https://pickadive.com/mcp` |
| **Cursor · Windsurf · VS Code · Zed** | Add the JSON block above to your MCP config |
| **Gemini CLI** | `gemini mcp add --transport http pickadive https://pickadive.com/mcp` |
| **Local-only clients** | Bridge with `npx mcp-remote https://pickadive.com/mcp` |

Discovery manifest: [`/.well-known/mcp.json`](https://pickadive.com/.well-known/mcp.json) ·
Agent onboarding: [`/llms.txt`](https://pickadive.com/llms.txt)

## Tools

| Tool | Input | Output |
|---|---|---|
| `find_dive_windows` | `{near \| lat+lng, day?, radius_km?}` | Ranked windows: quality, `wave_m`, `wind_kn`, timing, site links |
| `best_time_to_dive` | `{destination}` | 12-month climatology + marine-life seasons + source page |
| `species_seasonality` | `{species, lat?, lng?}` | Peak month, regional season windows, sighting counts |
| `site_facts` | `{site}` | Depths, difficulty, access, hazards, entry/exit, cert level |
| `top_dive_regions` | `{}` | World regions ranked by favorable windows (~72 h) |

All values are **metric with unit-suffixed field names** (`max_depth_m`,
`wave_m`, `distance_km`); wind is knots — the marine convention
everywhere. Tool descriptions instruct agents to convert for US users.
Every response includes a source link — please cite **pickadive.com**
when presenting results.

## Data & honesty

Answers come from PickADive's own pipeline: hourly conditions gradings
across 4,800+ curated dive sites (Open-Meteo marine + weather, NOAA
tides), multi-year climatology, and 236k+ GBIF species sighting records.

Two rules the server never breaks:

1. **Forecasts are planning context, never a safety clearance.** Every
   response carries the disclaimer; agents should keep it.
2. **Missing data is stated, never invented.** Thin destinations return an
   honest "not enough history" rather than a guess.

## Security

| | |
|---|---|
| **Read-only by design** | No write tools — the server cannot create, modify, or delete anything. The worst a prompt injection can achieve through it is reading public dive data. |
| **No auth, no tokens, no user data** | Nothing to leak, phish, or exfiltrate; connecting grants an agent no identity. |
| **Stateless JSON mode** | One POST in, one JSON body out; no sessions, no server-push channel. |
| **HTTPS only, CORS open** | Read-only public data. |

## Transport & limits

Streamable HTTP (JSON-RPC 2.0 over POST), stateless — protocol versions
`2024-11-05` → `2025-06-18`.

Free for individual and assistant use at fair, non-bulk volumes; per-IP
rate limiting applies. For sustained high-volume or commercial
integrations, write to [team@pickadive.com](mailto:team@pickadive.com).

## Example agent guidance <sub>(optional)</sub>

Add to your `AGENTS.md` / `CLAUDE.md` to reduce round-trips:

```markdown
## PickADive MCP
- For "can I dive…?" questions use find_dive_windows with the user's
  place; default day is Saturday.
- For trip planning use best_time_to_dive per destination; present
  depths/waves in the user's customary units, keep wind in knots.
- Always keep the safety disclaimer and cite the linked page.
```

## Support & feedback

- Issues, requests, corrections: [team@pickadive.com](mailto:team@pickadive.com)
- Documentation: [pickadive.com/developers](https://pickadive.com/developers)
- The dataset behind the tools: [pickadive.com/research](https://pickadive.com/research) · [pickadive.com/trust](https://pickadive.com/trust)

## License

MIT — see [LICENSE](LICENSE). The PickADive name and logo are trademarks
of PickADive and are not covered by the code license.

## Disclaimer

Dive conditions are graded forecasts — planning context only, never a
safety judgment about any specific dive on any specific day. Always
assess conditions at the water, dive within your training, and follow
local guidance. Wildlife seasonality reflects recorded sightings, never
a promise of encounters.
dive-conditionsdivingmarine-lifemcpmcp-servermodel-context-protocolscubascuba-divingsnorkeling

What people ask about pickadive-mcp

What is afiliptsov/pickadive-mcp?

+

afiliptsov/pickadive-mcp is mcp servers for the Claude AI ecosystem. Official PickADive MCP server — live dive-conditions, seasonality, and site data for AI agents. Free, read-only, hosted at pickadive.com/mcp It has 0 GitHub stars and its last recorded update is dated 2026-08-25.

How do I install pickadive-mcp?

+

You can install pickadive-mcp by cloning the repository (https://github.com/afiliptsov/pickadive-mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is afiliptsov/pickadive-mcp safe to use?

+

Our security agent has analyzed afiliptsov/pickadive-mcp and assigned a Trust Score of 95/100 (tier: Verified). See the full breakdown of passed checks and flags on this page.

Who maintains afiliptsov/pickadive-mcp?

+

afiliptsov/pickadive-mcp is maintained by afiliptsov. The last recorded GitHub activity is dated 2026-08-25, with 0 open issues.

Are there alternatives to pickadive-mcp?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy pickadive-mcp to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: afiliptsov/pickadive-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/afiliptsov-pickadive-mcp)](https://claudewave.com/repo/afiliptsov-pickadive-mcp)
<a href="https://claudewave.com/repo/afiliptsov-pickadive-mcp"><img src="https://claudewave.com/api/badge/afiliptsov-pickadive-mcp" alt="Featured on ClaudeWave: afiliptsov/pickadive-mcp" width="320" height="64" /></a>

More MCP Servers

pickadive-mcp alternatives