Back to Registry1) Current time (
2) Single tide value (
3) Tide extrema (
4) Weather points (
View Author Profile
Official Verified
tides
Access global ocean tides model. Functions include tide height at a given date/time/location, tide extrema, and grid weather data.
skill-install — Terminal
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/hamandmore/tidesOr
Tides JSON-RPC Access
Use this guide to call the deployed API directly:
- Base URL:
https://hamandmore.net/api/harmonics/mcp - Method:
POST - Content-Type:
application/json - Protocol: JSON-RPC 2.0 request envelope
Authentication
Use one of these modes:
- Anonymous: no
Authorizationheader (free tier rate limits) - Keyed: add
Authorization: Bearer <token>orAuthorization: Basic <token> - Need higher usage tiers? Request authentication by emailing
[email protected].
Important:
Basichere is an opaque token prefix, not RFC Basic base64 decoding.- Tokens do not need to be valid base64.
JSON-RPC Envelope
Always send:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list",
"params": {}
}
id: any client correlation valuemethod: one ofinitialize,tools/list,tools/callparams: object (required shape depends on method)
Quick Start Commands
Initialize:
curl -sS -X POST https://hamandmore.net/api/harmonics/mcp \
-H 'content-type: application/json' \
--data '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{}}'
List tools:
curl -sS -X POST https://hamandmore.net/api/harmonics/mcp \
-H 'content-type: application/json' \
--data '{"jsonrpc":"2.0","id":2,"method":"tools/list","params":{}}'
List tools (keyed tier):
curl -sS -X POST https://hamandmore.net/api/harmonics/mcp \
-H 'content-type: application/json' \
-H 'authorization: Bearer YOUR_TOKEN' \
--data '{"jsonrpc":"2.0","id":3,"method":"tools/list","params":{}}'
Tool Call Pattern
All tool calls use:
{
"jsonrpc": "2.0",
"id": 10,
"method": "tools/call",
"params": {
"name": "TOOL_NAME",
"arguments": {}
}
}
Curl Examples
1) Current time (tides_time)
curl -sS -X POST https://hamandmore.net/api/harmonics/mcp \
-H 'content-type: application/json' \
--data '{"jsonrpc":"2.0","id":10,"method":"tools/call","params":{"name":"tides_time","arguments":{}}}'
2) Single tide value (tides_single)
curl -sS -X POST https://hamandmore.net/api/harmonics/mcp \
-H 'content-type: application/json' \
--data '{"jsonrpc":"2.0","id":11,"method":"tools/call","params":{"name":"tides_single","arguments":{"latitude":40.7128,"longitude":-74.0060,"time":"2026-02-10T00:00:00Z"}}}'
3) Tide extrema (tides_extrema)
curl -sS -X POST https://hamandmore.net/api/harmonics/mcp \
-H 'content-type: application/json' \
--data '{"jsonrpc":"2.0","id":12,"method":"tools/call","params":{"name":"tides_extrema","arguments":{"latitude":40.7128,"longitude":-74.0060,"start_time":"2026-02-10T00:00:00Z","end_time":"2026-02-11T00:00:00Z"}}}'
4) Weather points (weather_met)
Metadata
AI Skill Finder
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skill Add to Configuration
Paste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-hamandmore-tides": {
"enabled": true,
"auto_update": true
}
}
}Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.