Connect to the Hosted Server
A public instance of mcnoaa-tides runs at:
https://mcp.mcnoaa-tides.warehack.ing/No API keys, no authentication, no local install. Connect from your browser and start asking about tides.
Claude.ai
Section titled “Claude.ai”Available on Pro, Max, Team, and Enterprise plans.
-
Open claude.ai and go to Settings
-
Select Connectors in the sidebar
-
Click Add custom connector
-
Paste the server URL:
https://mcp.mcnoaa-tides.warehack.ing/ -
No authentication needed — leave auth fields empty and save
Once connected, ask Claude something like “When’s the next high tide in Seattle?” and it will call the server directly.
Works on Claude iOS and Android too, once configured through the web interface.
ChatGPT
Section titled “ChatGPT”Available on Plus, Team, Enterprise, and Edu plans.
-
Open chatgpt.com and go to Settings
-
Under Advanced, enable Developer Mode
-
Go to Settings → Connectors
-
Click Create and fill in:
- Name: NOAA Tides
- URL:
https://mcp.mcnoaa-tides.warehack.ing/
-
No OAuth needed — save without configuring auth
Once added, ChatGPT can call the server’s tools in any conversation. Works across web, desktop, and mobile.
Claude Desktop
Section titled “Claude Desktop”Add the server URL to your Claude Desktop config file:
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
Edit %APPDATA%\Claude\claude_desktop_config.json:
Edit ~/.config/Claude/claude_desktop_config.json:
{ "mcpServers": { "mcnoaa-tides": { "url": "https://mcp.mcnoaa-tides.warehack.ing/" } }}Restart Claude Desktop. The server’s 14 tools, 4 prompts, and 3 resources will be available immediately.
Claude Code
Section titled “Claude Code”Register the remote server with a single command:
claude mcp add mcnoaa-tides --transport http https://mcp.mcnoaa-tides.warehack.ing/That’s it. Claude Code connects on the next session.
Any MCP Client
Section titled “Any MCP Client”If your client supports MCP’s Streamable HTTP transport, point it at:
| Field | Value |
|---|---|
| Endpoint | https://mcp.mcnoaa-tides.warehack.ing/ |
| Transport | Streamable HTTP |
| Auth | None required |
| Capabilities | 14 tools, 4 prompts, 3 resources |
Most clients accept a JSON config — the minimal block looks like:
{ "mcpServers": { "mcnoaa-tides": { "url": "https://mcp.mcnoaa-tides.warehack.ing/" } }}