> ## Documentation Index
> Fetch the complete documentation index at: https://docs.datadocked.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Windsurf

> Use Data Docked API with Windsurf's Cascade AI

Set up Windsurf's Cascade AI assistant to query maritime data directly in your editor.

## Prerequisites

* Windsurf editor installed
* DataDocked API key ([get one here](https://datadocked.com/signup))

## Setup

<Steps>
  <Step title="Install the MCP Server">
    In the integrated terminal, run:

    ```bash theme={null}
    npm install -g datadocked-mcp
    ```
  </Step>

  <Step title="Configure Windsurf">
    Add to your Windsurf MCP settings:

    ```json theme={null}
    {
      "mcpServers": {
        "datadocked": {
          "command": "npx",
          "args": ["datadocked-mcp"],
          "env": {
            "DATADOCKED_API_KEY": "your_api_key_here"
          }
        }
      }
    }
    ```
  </Step>

  <Step title="Restart Windsurf">
    Restart Windsurf to load the MCP server.
  </Step>

  <Step title="Start querying">
    Ask Cascade questions like:

    * "Where is the Ever Given right now?"
    * "Show me all tankers near Singapore"
    * "Get the inspection history for vessel 9811000"
  </Step>
</Steps>
