INDIVIDUAL MCP TOOL
scalix_db_relationships
Get the relationship map showing how tables are connected via foreign keys.
LIVE ENDPOINT
https://api.scalix.world/v1/mcp
Connect to this endpoint to inspect the live schema for scalix_db_relationships and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- No write-capable action terms were found; this is not proof that invocation has no side effects.
Parent server
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
scalix_db_search_columns— Search for columns by name or type across all tables.scalix_db_pii— List all columns classified as containing personally identifiable information (PII).scalix_db_optimize— Analyze a SQL query and return optimization suggestions including index recommendations and query rewrites.scalix_db_text_to_sql— Translate a plain-language question into a candidate SQL query using pattern-matching against the live schema (no AI model — simple questions only: counts, averages, filtered selects on a named table).scalix_db_query— Execute a SQL query against the project database.scalix_db_schema— Get the full database schema including all tables, columns, types, and relationships.scalix_db_table— Get detailed information about a specific database table including columns, indexes, and foreign keys.scalix_db_migrate— Apply a database migration by version number.