live · Personal & Media · JSON · API for agents
List all read-only CamJam surf spots in New Zealand with names, regions, slugs, and spot details.
{
"name": "get_all_surf_spots",
"kind": "read",
"impl": "declarative",
"description": "List all read-only CamJam surf spots in New Zealand with names, regions, slugs, and spot details.",
"inputSchema": {
"type": "object",
"properties": {}
},
"page": "/"
}Get read-only CamJam surf spot details by slug, including region, location, hazards, forecast, tides, and page link.
{
"name": "get_surf_spot",
"kind": "read",
"impl": "declarative",
"description": "Get read-only CamJam surf spot details by slug, including region, location, hazards, forecast, tides, and page link.",
"inputSchema": {
"type": "object",
"properties": {
"slug": {
"type": "string"
}
},
"required": [
"slug"
]
},
"page": "/"
}List read-only CamJam surf spots in a named New Zealand region.
{
"name": "get_spots_by_region",
"kind": "read",
"impl": "declarative",
"description": "List read-only CamJam surf spots in a named New Zealand region.",
"inputSchema": {
"type": "object",
"properties": {
"region": {
"type": "string"
}
},
"required": [
"region"
]
},
"page": "/"
}Get the read-only CamJam surf forecast for a surf spot slug, including wave and wind context.
{
"name": "get_spot_forecast",
"kind": "read",
"impl": "declarative",
"description": "Get the read-only CamJam surf forecast for a surf spot slug, including wave and wind context.",
"inputSchema": {
"type": "object",
"properties": {
"slug": {
"type": "string"
}
},
"required": [
"slug"
]
},
"page": "/"
}Get read-only CamJam tide information for a surf spot slug, including upcoming high and low tides.
{
"name": "get_spot_tides",
"kind": "read",
"impl": "declarative",
"description": "Get read-only CamJam tide information for a surf spot slug, including upcoming high and low tides.",
"inputSchema": {
"type": "object",
"properties": {
"slug": {
"type": "string"
}
},
"required": [
"slug"
]
},
"page": "/"
}