Connection check
verified live · 26h ago
cloud
The agent-native cloud: database, functions, AI, storage, computers. 50 tools, one API key.
Tools
51
GitHub stars
2
Installs / wk
—
Licence
MIT
Transport
streamable-http
Last checked
26h ago
Tools & capabilities
51 toolsRead from the running server on 26h ago.
scalix_ai_infer
modelprompt*systemmax_tokenstemperature
Run AI inference on Scalix AI. Sends a prompt and returns the model's response in the OpenAI-compatible chat-completions format; tokens are billed to the project's credit pool. Dis… Run AI inference on Scalix AI. Sends a prompt and returns the model's response in the OpenAI-compatible chat-completions format; tokens are billed to the project's credit pool. Discover available model IDs with scalix_ai_models.
scalix_ai_models
read-only
List the AI models available to the project — virtual tiers and the pass-through catalog model IDs — for use in scalix_ai_infer. List the AI models available to the project — virtual tiers and the pass-through catalog model IDs — for use in scalix_ai_infer.
scalix_auth_configure
can modify data
mfa_enabledallowed_providersrequire_email_confirmation
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… 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 a connected app, so this tool fails on an OAuth connection.
scalix_build_create
name*branchgit_url*dockerfile
Create a new container image build from a Git repository or Dockerfile. Create a new container image build from a Git repository or Dockerfile.
scalix_build_status
read-only
build_id*
Get the status and logs of a build. Get the status and logs of a build.
scalix_computer_create
name*vcpusdisk_gbssh_keysmemory_mb
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… 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, the disk survives stop/start and is only erased by scalix_computer_delete.
scalix_computer_delete
can modify data
id*
Permanently delete a persistent Linux machine AND its disk. This cannot be undone — use scalix_computer_stop if you may want the files back. Permanently delete a persistent Linux machine AND its disk. This cannot be undone — use scalix_computer_stop if you may want the files back.
scalix_computer_exec
can modify data
id*cwdenvargscommand*timeout_ms
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. 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.
scalix_computer_list
read-only
List your persistent Linux machines with their status, address and resource shape. List your persistent Linux machines with their status, address and resource shape.
scalix_computer_read_file
read-only
id*path*
Read a text file out of a persistent Linux machine. Read a text file out of a persistent Linux machine.
scalix_computer_set_ssh_keys
can modify data
id*ssh_keys*
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 worki… 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. Sending an empty list removes every key. Not a patch — whatever you send becomes the whole list, so read the current keys from scalix_computer_list first if you mean to add one.
scalix_computer_start
id*
Start a stopped persistent Linux machine. Same disk, same address. Start a stopped persistent Linux machine. Same disk, same address.
scalix_computer_stop
id*
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 sto… 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 only its disk.
scalix_computer_write_file
can modify data
id*modepath*content*
Write a text file into a persistent Linux machine. Use this instead of shelling out with cat/echo — no quoting to get wrong. Write a text file into a persistent Linux machine. Use this instead of shelling out with cat/echo — no quoting to get wrong.
scalix_crew_board_post
body*pinnedcrew_id*ttl_secondsowner_member_idauthor_member_id
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 wh… 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 must see, and set owner_member_id to hand work off to a specific member. Notes cannot be edited from here — post a correction instead.
scalix_crew_board_read
read-only
crew_id*
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 wo… 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 latest news, and post what teammates need to know with scalix_crew_board_post.
scalix_crew_list
read-only
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. 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.
scalix_cron_create
name*configexpression*action_type*
Create a cron schedule to run a function or webhook on a timer. Create a cron schedule to run a function or webhook on a timer.
scalix_db_migrate
can modify data
version*tenant_id*
Apply a database migration by version number. Apply a database migration by version number.
scalix_db_optimize
read-only
sql*
Analyze a SQL query and return optimization suggestions including index recommendations and query rewrites. Analyze a SQL query and return optimization suggestions including index recommendations and query rewrites.
scalix_db_pii
read-only
List all columns classified as containing personally identifiable information (PII). List all columns classified as containing personally identifiable information (PII).
scalix_db_query
can modify data
sql*paramsconfirm_token
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 confir… 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 call returns code CONFIRMATION_REQUIRED with a confirmation_token — re-call with that value in confirm_token to execute.
scalix_db_relationships
read-only
Get the relationship map showing how tables are connected via foreign keys. Get the relationship map showing how tables are connected via foreign keys.
scalix_db_schema
read-only
Get the full database schema including all tables, columns, types, and relationships. Get the full database schema including all tables, columns, types, and relationships.
scalix_db_search_columns
read-only
query*
Search for columns by name or type across all tables. Search for columns by name or type across all tables.
scalix_db_table
read-only
table*
Get detailed information about a specific database table including columns, indexes, and foreign keys. Get detailed information about a specific database table including columns, indexes, and foreign keys.
scalix_db_text_to_sql
read-only
question*
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 selec… 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). Returns the SQL without executing it, with a confidence score; low confidence means the table was guessed. Review the statement and tables_used, then run it with scalix_db_query. For complex questions, read scalix_db_schema and write the SQL directly.
scalix_domain_add
domain*
Add a custom domain to the project. Returns DNS records to configure. Add a custom domain to the project. Returns DNS records to configure.
scalix_domain_list
read-only
List all custom domains and their SSL/verification status. List all custom domains and their SSL/verification status.
scalix_domain_verify
domain*
Verify DNS configuration for a custom domain and provision SSL certificate. Verify DNS configuration for a custom domain and provision SSL certificate.
scalix_events_publish
data*topic_id*event_type*
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. 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.
scalix_events_topics
read-only
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-exi… 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.
scalix_fn_deploy
name*image*runtime
Deploy a Scalix Function — serverless, per-request billed, running in isolated microVMs — from a container image. Invoke it with scalix_fn_invoke once deployed. Deploy a Scalix Function — serverless, per-request billed, running in isolated microVMs — from a container image. Invoke it with scalix_fn_invoke once deployed.
scalix_fn_invoke
can modify data
datafunction_id*
Invoke a deployed function with a JSON payload. Invoke a deployed function with a JSON payload.
scalix_fn_list
read-only
List all deployed serverless functions. List all deployed serverless functions.
scalix_kv_get
read-only
key*
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_… 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 keys by prefix first.
scalix_kv_list
read-only
prefix
List keys in the key-value store, optionally filtered by prefix. List keys in the key-value store, optionally filtered by prefix.
scalix_kv_set
can modify data
key*ttlvalue*
Set a key-value pair with optional TTL. Set a key-value pair with optional TTL.
scalix_project_create
name*slug*org_id*
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 sco… 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 delegated to a connected app, so this tool fails on an OAuth connection.
scalix_project_list
read-only
org_id*
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: organiz… 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 never delegated to a connected app, so this tool fails on an OAuth connection.
scalix_run_delete
can modify data
id*
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 revisi… 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_rollback cannot bring it back afterwards. To stop paying for an idle service without losing it, set min_instances to 0 with scalix_run_scale instead.
scalix_run_deploy
envname*portimage*max_instancesmin_instances
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… 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, and autoscaling between min_instances and max_instances (min 0 = scale-to-zero when idle). Billed per vCPU-hour while instances run. Roll back a bad revision with scalix_run_rollback.
scalix_run_list
read-only
List all deployed container services in the project. List all deployed container services in the project.
scalix_run_rollback
id*revision
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… 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 redeployed later. Use scalix_run_list to see services and their current revisions.
scalix_run_scale
id*max_instancesmin_instances
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 en… 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 when idle. Takes effect immediately. Find service IDs with scalix_run_list.
scalix_sandbox_run
code*fileslanguage*packagestimeout_seconds
Execute code in an isolated sandbox. Supports Python, JavaScript, TypeScript, and Bash. Returns stdout/stderr. Execute code in an isolated sandbox. Supports Python, JavaScript, TypeScript, and Bash. Returns stdout/stderr.
scalix_status
read-only
Get the current health status of the Scalix Cloud platform including all service components. Get the current health status of the Scalix Cloud platform including all service components.
scalix_storage_create_bucket
name*public
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 buck… 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 authentication — leave it false (the default) and use presigned URLs for private sharing.
scalix_storage_download
read-only
key*bucket*
Download an object from storage. Returns the content as base64. Download an object from storage. Returns the content as base64.
scalix_storage_list
read-only
bucketprefix
List storage buckets, or list objects in a specific bucket with optional prefix filter. List storage buckets, or list objects in a specific bucket with optional prefix filter.
scalix_storage_upload
can modify data
key*bucket*content*content_type