Skip to main content
AQUAVIEW MCP Server is Live

Unlock AQUAVIEW's power for your AI agent

Connect your AI agents directly to AQUAVIEW's extensive oceanographic and environmental data catalog through our MCP server for effortless data exploration, access, and analysis.

Access AQUAVIEW MCP now at:

https://mcp.aquaview.org/mcp

Getting Started

The Model Context Protocol (MCP) is an open-source standard for connecting AI applications to external systems. With AQUAVIEW's MCP server, you can empower your AI agents and workflows to query, discover, and analyze oceanographic and environmental data from our extensive data catalog.

Access the AQUAVIEW Model Context Protocol (MCP) server for seamless AI application integration at https://mcp.aquaview.org/mcp. Legacy SSE connections are also supported at https://mcp.aquaview.org/sse.

Configuration Examples

Gemini CLI

gemini mcp add --transport http aquaview https://mcp.aquaview.org/mcp

Add the following to your ~/.gemini/settings.json file:

{
  "mcpServers": {
    "aquaview": {
      "httpUrl": "https://mcp.aquaview.org/mcp"
    }
  }
}

Claude Desktop

  1. Open Claude Desktop
  2. Go to Settings → Connectors
  3. Click "Add custom connector"
  4. Paste the MCP server URL:
https://mcp.aquaview.org/mcp

Remote MCP servers are supported on Pro, Max, Team, and Enterprise plans.

VS Code (settings.json)

{
  "servers": {
    "aquaview": {
      "url": "https://mcp.aquaview.org/mcp",
      "type": "http"
    }
  }
}

Windsurf

Add the following to your ~/.codeium/mcp_config.json:

{
  "mcpServers": {
    "aquaview": {
      "serverUrl": "https://mcp.aquaview.org/mcp"
    }
  }
}