Scalix Cloud
world.scalix/cloudThe agent-native cloud: database, functions, AI, storage, computers. 50 tools, one API key.
Tools · 53
Get the relationship map showing how tables are connected via foreign keys.
Search for columns by name or type across all tables.
List all columns classified as containing personally identifiable information (PII).
Analyze a SQL query and return optimization suggestions including index recommendations and query rewrites.
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)…
Execute a SQL query against the project database. Returns columns, rows, row count, and cost breakdown. Destructive statements (DROP/TRUNCATE/bulk DELETE) require a two-step confirmation: the first ca…
Get the full database schema including all tables, columns, types, and relationships.
Get detailed information about a specific database table including columns, indexes, and foreign keys.
Apply a database migration by version number.
List storage buckets, or list objects in a specific bucket with optional prefix filter.
Upload content to object storage. Provide the content as a base64-encoded string.
Download an object from storage. Returns the content as base64.
Create a new Scalix Storage bucket in the project (S3-compatible object storage). Bucket names must be unique within the project. Setting public=true makes every object in the bucket readable without …
List all deployed serverless functions.
Deploy a Scalix Function — serverless, per-request billed, running in isolated microVMs — from a container image. Invoke it with scalix_fn_invoke once deployed.
Invoke a deployed function with a JSON payload.
Read a single value from the project's key-value store by exact key. Returns the stored value, or a not-found error if the key does not exist or its TTL has expired. Use scalix_kv_list to discover key…
Set a key-value pair with optional TTL.
List keys in the key-value store, optionally filtered by prefix.
Run AI inference on Scalix AI — the Scalix Lumio model family. Sends a prompt and returns the model's response in the OpenAI-compatible chat-completions format; tokens are billed to the project's cred…
List the AI models available to the project — the Scalix Lumio family and any models enabled for the org — with their IDs for use in scalix_ai_infer.
Publish an event to a topic. Provide an event_type (a short name for the kind of event, e.g. 'user.created') and the data payload.
List the event-bus topics in the project, with each topic's ID and name. Use this to find or verify a topic_id before publishing with scalix_events_publish; publishing to a non-existent topic fails.
Create a cron schedule to run a function or webhook on a timer.
Execute code in an isolated sandbox. Supports Python, JavaScript, TypeScript, and Bash. Returns stdout/stderr.
Get or create a persistent Linux machine by name. Idempotent — calling it again with the same name returns the existing machine rather than creating another, so it is safe to retry. Unlike a sandbox, …
Replace the ssh keys authorised for root on a persistent Linux machine. This is how you revoke: send the list without the key you want gone, and on a running machine it stops working immediately. Send…
List your persistent Linux machines with their status, address and resource shape.
Run a command inside a persistent Linux machine and wait for it to finish. Returns exit code, stdout and stderr. The machine must be running.
Write a text file into a persistent Linux machine. Use this instead of shelling out with cat/echo — no quoting to get wrong.
Read a text file out of a persistent Linux machine.
Stop a persistent Linux machine. The disk and the network address are kept, so starting it again returns the same files at the same address. Stop machines you are done with — a stopped machine costs o…
Start a stopped persistent Linux machine. Same disk, same address.
Permanently delete a persistent Linux machine AND its disk. This cannot be undone — use scalix_computer_stop if you may want the files back.
List your crews with their ids and names. A crew is a team of AI members that share a notice board; use the crew id with the board tools.
Read a crew's notice board: every pinned note plus the newest unpinned ones, current as of this call. The board is the crew's shared coordination state — read it before starting work so you act on the…
Post a note to the crew's notice board for other members and the human to see. The board is news, not knowledge: set ttl_seconds so routine updates expire on their own, pin only what every future task…
Add a custom domain to the project. Returns DNS records to configure.
List all custom domains and their SSL/verification status.
Verify DNS configuration for a custom domain and provision SSL certificate.
Create a new container image build from a Git repository or Dockerfile.
Get the status and logs of a build.
Create a new project within an organization. Returns the project ID, name, and slug. Issue an API key for the new project separately. Needs an admin API key: organization admin scope is never delegate…
List every project in an organization, with each project's ID, name, and slug. Use this to resolve a project ID before calling project-scoped tools. Needs an admin API key: organization admin scope is…
Configure end-user authentication for the project — require MFA, require email confirmation, and set the allowed auth providers. Needs an admin API key: organization admin scope is never delegated to …
Get the current health status of the Scalix Cloud platform including all service components.
Get current usage metrics and costs for a project.
Deploy a long-running container service on Scalix Run from a container image. Creates a new service, or a new revision of an existing service with the same name, with health checks, a public HTTPS URL…
List all deployed container services in the project.
Change the autoscaling bounds of an existing Scalix Run service without redeploying it. Raising min_instances keeps instances warm (no cold starts, higher cost); min_instances 0 enables scale-to-zero …
Roll a Scalix Run service back to an earlier revision — omit 'revision' to return to the immediately previous one. Traffic switches to the target revision; the replaced revision is kept and can be red…
Permanently delete a Scalix Run service. This cannot be undone: it stops the running instances, releases the public HTTPS URL, erases any attached volumes and discards every revision, so scalix_run_ro…
Search the Scalix original-source index — a curated set of original publishers (newsrooms, wires, regulators), not the open web. Returns originals only by default (syndicated copies collapsed to the s…
Resources · 2
Full database schema as structured JSON
scalix://schema
Foreign key relationships between tables
scalix://relationships
Similar MCP servers embedding-nearest
How to use
Add to your Claude Desktop / Cursor / Cline MCP config:
{
"mcpServers": {
"scalix_cloud": {
"url": "https://api.scalix.world/v1/mcp",
"transport": "streamable-http"
}
}
}