C

camjam.co.nz

Live surf cams, 5-day forecasts, tide charts, and wind/swell reports for every surf spot in New Zealand — free, updated daily. WebMCP tools let an agent list spots, look up a spot, and read its forecast and tides.

5read
https://www.camjam.co.nz/

live · Personal & Media · JSON · API for agents

Tools 5 tools

get_all_surf_spotsread

List all read-only CamJam surf spots in New Zealand with names, regions, slugs, and spot details.

View tool JSON
{
  "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_surf_spotread

Get read-only CamJam surf spot details by slug, including region, location, hazards, forecast, tides, and page link.

View tool JSON
{
  "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": "/"
}
get_spots_by_regionread

List read-only CamJam surf spots in a named New Zealand region.

View tool JSON
{
  "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_spot_forecastread

Get the read-only CamJam surf forecast for a surf spot slug, including wave and wind context.

View tool JSON
{
  "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_spot_tidesread

Get read-only CamJam tide information for a surf spot slug, including upcoming high and low tides.

View tool JSON
{
  "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": "/"
}