← scalix.world

INDIVIDUAL MCP TOOL

scalix_db_sandbox

Create an isolated database sandbox (instant branch) for safe experimentation.

scalix.worldnone authenticationAvailability not checked

Input schema

{}

Risk classification

Potential side effects detected · medium confidence · heuristic, not a guarantee.

  • A tool name or description contains a write-action term.

Parent endpoint

scalix.world

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.scalix-cloud]
url = "https://api.scalix.world/v1/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "scalix-cloud": {
      "type": "http",
      "url": "https://api.scalix.world/v1/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: scalix-cloud
Remote MCP URL: https://api.scalix.world/v1/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "scalix-cloud": {
      "url": "https://api.scalix.world/v1/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "scalix-cloud": {
      "type": "http",
      "url": "https://api.scalix.world/v1/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "scalix-cloud",
  "transport": "streamable-http",
  "url": "https://api.scalix.world/v1/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • query — Execute a SQL statement against the project's ScalixNova PostgreSQL database.
  • get_schema — Get the full database schema including tables, columns, types, indexes, foreign keys, and PII classifications.
  • get_table — Get detailed information about a specific table including columns, indexes, foreign keys, and sample values.
  • get_relationships — Get the relationship map showing how tables are connected via foreign keys.
  • search_columns — Search for columns by name or type across all tables.
  • list_pii — List all columns classified as containing personally identifiable information (PII).
  • create_sandbox — Create an isolated ScalixNova database branch (instant copy-on-write sandbox) for safe experimentation — run queries and migrations against it without touching production data.
  • destroy_sandbox — Destroy a sandbox environment and revoke its token.