Beach Day API MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Beach Day API MCP or direct API to search beaches, check live conditions, compare beach scores, and fetch tide predictions through natural language.

Beach Day API logoBeach Day API
Api Key

Beach Day API is a beach intelligence service for search, conditions, scores, rules, amenities, tides, and country coverage. Use it to power trip planning, surf reports, safety checks, and location-aware beach discovery.

8 Tools

Try Beach Day API now

Type what you want done — sign in and watch it run live in the Tool Router playground.

TOOL ROUTER PLAYGROUND
Beach Day API
Try asking
TOOLS

Supported Tools

Every Beach Day API action and event your agent gets out of the box.

Get Beach Amenities

Get facilities and accessibility amenities for a beach without paying for the full beach profile.

Get Beach Details

Get a full beach profile, including current score, water quality, weather, ocean conditions, rules, and amenities.

Get Beach Rules

Get activity rules for a beach without paying for the full beach profile.

Get Tide Predictions

Get up to seven days of stored tide-prediction groups for a beach.

List Beach Conditions

Return current and recent condition snapshots for a beach, including score, water quality, weather, ocean conditions, and available tide data.

List Beaches by Score

Return beaches ranked by current Beach Day Score from highest to lowest.

List Countries

List countries covered by Beach Day API with beach counts, ordered from highest to lowest count.

Search Beaches

Find beaches by name, country, or state/province code and return IDs for detail, conditions, rules, amenities, and tide lookups.

SETUP GUIDE

Connect Beach Day API MCP Tool with your Agent

1

Install Composio

typescript
npm install @composio/core ai @ai-sdk/openai @ai-sdk/mcp
Install the Composio SDK for Python or TypeScript
2

Initialize Client and Create Tool Router Session

typescript
import { Composio } from '@composio/core';

const composio = new Composio({ apiKey: 'your-api-key' });
const session = await composio.create('your-user-id');
console.log(`Tool Router session created: ${session.mcp.url}`);
Import and initialize the Composio client, then create a Tool Router session for Beach Day API
3

Connect to AI Agent

typescript
import { openai } from '@ai-sdk/openai';
import { experimental_createMCPClient as createMCPClient } from '@ai-sdk/mcp';
import { generateText } from 'ai';

const client = await createMCPClient({
  transport: {
    type: 'http',
    url: session.mcp.url,
    headers: {
      'x-api-key': 'your-composio-api-key',
    },
  },
});

const tools = await client.tools();
const { text } = await generateText({
  model: openai('gpt-4o'),
  tools,
  messages: [{
    role: 'user',
    content: 'Check beach conditions, amenities, and rules for Bondi Beach today'
  }],
  maxSteps: 5,
});

console.log(`Agent: ${text}`);
Use the MCP server with your AI agent (Anthropic Claude or Mastra)
SETUP GUIDE

Connect Beach Day API API Tool with your Agent

1

Install Composio

typescript
npm install @composio/openai
Install the Composio SDK
2

Initialize Composio and Create Tool Router Session

typescript
import OpenAI from 'openai';
import { Composio } from '@composio/core';
import { OpenAIResponsesProvider } from '@composio/openai';

const composio = new Composio({
  provider: new OpenAIResponsesProvider(),
});
const openai = new OpenAI({});
const session = await composio.create('your-user-id');
Import and initialize Composio client, then create a Tool Router session
3

Execute Beach Day API Tools via Tool Router with Your Agent

typescript
const tools = session.tools;
const response = await openai.responses.create({
  model: 'gpt-4.1',
  tools: tools,
  input: [{
    role: 'user',
    content: 'Find beaches near San Diego with good conditions today and show tide predictions'
  }],
});
const result = await composio.provider.handleToolCalls(
  'your-user-id',
  response.output
);
console.log(result);
Get tools from Tool Router session and execute Beach Day API actions with your Agent

Why Use Composio?

AI Native Beach Day API Integration

  • Supports both Beach Day API MCP and direct API based integrations
  • Structured, LLM-friendly schemas for reliable beach search, conditions, tide, and amenity lookups
  • Rich coverage for querying beaches, rules, country coverage, scores, and local coastal data

Managed Auth

  • Secure API key handling without hard-coding Beach Day API credentials in your agent code
  • Central place to manage, scope, and revoke Beach Day API access
  • Per user and per environment credentials so your beach apps stay clean and safe

Agent Optimized Design

  • Tools are designed so agents can ask practical questions like “Which nearby beach is best today?” and get structured results
  • Tool schemas make beach conditions, tide predictions, amenities, and local rules easier for LLMs to use correctly
  • Comprehensive execution logs so you always know what ran, when, and on whose behalf

Enterprise Grade Security

  • Fine-grained RBAC so you control which agents and users can access Beach Day API
  • Scoped, least privilege access to Beach Day API resources
  • Full audit trail of agent actions to support review, debugging, and compliance
FAQ

Frequently asked questions

Yes, Beach Day API requires you to configure your own API key credentials. Once set up, Composio handles secure credential storage and API request handling for you.

Yes! Composio's Tool Router enables agents to use multiple toolkits. Learn more.

Composio is SOC 2 and ISO 27001 compliant with all data encrypted in transit and at rest. Learn more.

Composio maintains and updates all toolkit integrations automatically, so your agents always work with the latest API versions.

Start with Beach Day API.It takes 30 seconds.

Managed auth, hosted MCP servers, and every Beach Day API tool your agent needs.Free to start.

Start building