Explore
Contribute
Sign In

Explore

  1. Explore
  2. /
  3. Databases & Storage
  4. /
  5. SchemaCrawler AI

SchemaCrawler AI

SchemaCrawler AI

mcp

The SchemaCrawler AI MCP Server enables natural language interaction with your database schema using an MCP client in "Agent" mode. It allows users to explore tables, columns, foreign keys, triggers, stored procedures and more simply by asking questions like "Explain the code for the interest calculation stored procedure". You can also ask it to help with SQL, since it knows your schema. This is ideal for developers, DBAs, and data analysts who want to streamline schema comprehension and query development without diving into dense documentation.

683

8 Tools

Packaged by
Requires Configuration
Requires Secrets
Add to Docker Desktop

Version 4.43 or later needs to be installed to add the server automatically

OverviewTools (8)ConfigManual installation
Docker Hub⁠Github repository⁠

You can install this MCP server using:

​

Note: You should still configure the server and specify required secrets after installing it.

See client instructions below for how to connect the MCP Toolkit gateway to each client.

https://claude.ai/download⁠

Connect the MCP Toolkit gateway to Claude Desktop using:

​

Once connected, you can install this MCP server using:

​

Note: You should still configure the server and specify required secrets after installing it.

Restart Claude Desktop for the changes to take effect.

  1. Open Claude Settings.
  2. Select the Developer tab.
  3. Select the Edit Config button.
  4. Add schemacrawler-ai to the mcpServers section:
{
  "mcpServers": {
    "schemacrawler-ai": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "-e",
        "SCHCRWLR_JDBC_URL",
        "-e",
        "SCHCRWLR_SERVER",
        "-e",
        "SCHCRWLR_HOST",
        "-e",
        "SCHCRWLR_PORT",
        "-e",
        "SCHCRWLR_DATABASE",
        "-e",
        "SCHCRWLR_INFO_LEVEL",
        "-e",
        "SCHCRWLR_LOG_LEVEL",
        "-e",
        "SCHCRWLR_DATABASE_USER",
        "-e",
        "SCHCRWLR_DATABASE_PASSWORD",
        "-v",
        "/local-directory:/local-directory",
      - mcp/schemacrawler-ai@sha256:529bcf70c268d5763dc817effcdd4561c6f9c53a08dc6884bee35b5df1659941
      ],
      "env": {
        "SCHCRWLR_JDBC_URL": "{{schemacrawler-ai.url_connection.jdbc_url}}",
        "SCHCRWLR_SERVER": "{{schemacrawler-ai.server_connection.server}}",
        "SCHCRWLR_HOST": "{{schemacrawler-ai.server_connection.host}}",
        "SCHCRWLR_PORT": "{{schemacrawler-ai.server_connection.port}}",
        "SCHCRWLR_DATABASE": "{{schemacrawler-ai.server_connection.database}}",
        "SCHCRWLR_INFO_LEVEL": "{{schemacrawler-ai.general.info_level}}",
        "SCHCRWLR_LOG_LEVEL": "{{schemacrawler-ai.general.log_level}}",
        "SCHCRWLR_DATABASE_USER": "SA",
        "SCHCRWLR_DATABASE_PASSWORD": "super_S3cret"
      }
    }
  }
}

https://www.continue.dev/⁠

Connect the MCP Toolkit gateway to Continue.dev using:

​

Once connected, you can install this MCP server using:

​

Note: You should still configure the server and specify required secrets after installing it.

  1. In your global .continue folder (~/.continue on Mac/Linux, %USERPROFILE%.continue on Windows), create a a folder called mcpServers.
  2. Create a new file named schemacrawler-ai.yaml in the mcpServers folder.
  3. Write the following contents to schemacrawler-ai.yaml and save.
name: Docker MCP SchemaCrawler AI
version: 1.0.1
schema: v1

mcpServers:
  - name: SchemaCrawler AI
    command: docker
    args:
      - run
      - --rm
      - -i
      - -e
      - SCHCRWLR_JDBC_URL
      - -e
      - SCHCRWLR_SERVER
      - -e
      - SCHCRWLR_HOST
      - -e
      - SCHCRWLR_PORT
      - -e
      - SCHCRWLR_DATABASE
      - -e
      - SCHCRWLR_INFO_LEVEL
      - -e
      - SCHCRWLR_LOG_LEVEL
      - -e
      - SCHCRWLR_DATABASE_USER
      - -e
      - SCHCRWLR_DATABASE_PASSWORD
      - -v
      - /local-directory:/local-directory
      - mcp/schemacrawler-ai@sha256:529bcf70c268d5763dc817effcdd4561c6f9c53a08dc6884bee35b5df1659941
    env:
      SCHCRWLR_JDBC_URL: "{{schemacrawler-ai.url_connection.jdbc_url}}"
      SCHCRWLR_SERVER: "{{schemacrawler-ai.server_connection.server}}"
      SCHCRWLR_HOST: "{{schemacrawler-ai.server_connection.host}}"
      SCHCRWLR_PORT: "{{schemacrawler-ai.server_connection.port}}"
      SCHCRWLR_DATABASE: "{{schemacrawler-ai.server_connection.database}}"
      SCHCRWLR_INFO_LEVEL: "{{schemacrawler-ai.general.info_level}}"
      SCHCRWLR_LOG_LEVEL: "{{schemacrawler-ai.general.log_level}}"
      SCHCRWLR_DATABASE_USER: "SA"
      SCHCRWLR_DATABASE_PASSWORD: "super_S3cret"

https://www.cursor.com/downloads⁠

Connect the MCP Toolkit gateway to Cursor using:

​

Once connected, you can install this MCP server using:

​

Note: You should still configure the server and specify required secrets after installing it.

  1. Open Cursor Settings.
  2. Select the MCP Tools tab.
  3. Select the New Custom MCP button.
  4. Add schemacrawler-ai to the mcpServers section:
{
  "mcpServers": {
    "schemacrawler-ai": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "-e",
        "SCHCRWLR_JDBC_URL",
        "-e",
        "SCHCRWLR_SERVER",
        "-e",
        "SCHCRWLR_HOST",
        "-e",
        "SCHCRWLR_PORT",
        "-e",
        "SCHCRWLR_DATABASE",
        "-e",
        "SCHCRWLR_INFO_LEVEL",
        "-e",
        "SCHCRWLR_LOG_LEVEL",
        "-e",
        "SCHCRWLR_DATABASE_USER",
        "-e",
        "SCHCRWLR_DATABASE_PASSWORD",
        "-v",
        "/local-directory:/local-directory",
      - mcp/schemacrawler-ai@sha256:529bcf70c268d5763dc817effcdd4561c6f9c53a08dc6884bee35b5df1659941
      ],
      "env": {
        "SCHCRWLR_JDBC_URL": "{{schemacrawler-ai.url_connection.jdbc_url}}",
        "SCHCRWLR_SERVER": "{{schemacrawler-ai.server_connection.server}}",
        "SCHCRWLR_HOST": "{{schemacrawler-ai.server_connection.host}}",
        "SCHCRWLR_PORT": "{{schemacrawler-ai.server_connection.port}}",
        "SCHCRWLR_DATABASE": "{{schemacrawler-ai.server_connection.database}}",
        "SCHCRWLR_INFO_LEVEL": "{{schemacrawler-ai.general.info_level}}",
        "SCHCRWLR_LOG_LEVEL": "{{schemacrawler-ai.general.log_level}}",
        "SCHCRWLR_DATABASE_USER": "SA",
        "SCHCRWLR_DATABASE_PASSWORD": "super_S3cret"
      }
    }
  }
}

https://code.visualstudio.com/⁠

Define the MCP Toolkit gateway as a server in the MCP Visual Studio Code user settings. Learn more⁠

"mcp": {
  "servers": {
    "MCP_DOCKER": {
      "command": "docker",
      "args": [
        "mcp",
        "gateway",
        "run"
      ],
      "type": "stdio"
    }
  }
}

Once connected, you can install this MCP server using:

​

Note: You should still configure the server and specify required secrets after installing it.

https://docs.docker.com/ai/gordon/⁠

Connect the MCP Toolkit gateway to Gordon using:

​

Once connected, you can install this MCP server using:

​

Note: You should still configure the server and specify required secrets after installing it.

Manual installation

You can install the MCP server using:

​

Installation for

Related servers

© 2025 Docker, Inc. All rights reserved. | Terms of Service | Subscription Service Agreement | Privacy | Legal