Docs — Connectors

Your systems, no server to install.

A connector is an MCP tool set that the Exorails gateway runs itself, speaking the wire protocol of your system directly. You paste a credential once; there is no MCP server to install, host or patch.

Why connectors

Reaching a database or a server from an agent normally means running an MCP server somewhere: a Postgres MCP server, a Redis one, an SSH one, each a process to install, host and keep updated. Exorails removes that step. For these systems the gateway is the MCP server: it connects to yours at call time, with the credential kept in the environment vault, and exposes a set of tools we designed and secured.

Available connectors

ConnectorYou provideTools
PostgreSQLpostgres://… connection stringquery, schema, explain, execute (writes, when read-only is off)
MySQL / MariaDBmysql://… connection stringquery, schema, explain, execute when read-only is off
SQL Server / Azure SQLsqlserver://… connection string (or the server=…;user id=… form)query (SELECT and WITH only in read-only), schema, explain, execute when read-only is off
Redis / Valkeyrediss://… URLget, scan, info, command (allow-listed), set and del when read-only is off
MongoDBmongodb+srv://… connection stringfind, aggregate, count, distinct, schema, plus insert_one, update_many, delete_many when read-only is off
ClickHouseHTTPS URL with credentials (https://user:password@host:8443), ClickHouse Cloud includedquery (sent with readonly=1 and a row cap), schema, explain, execute when read-only is off
Elasticsearch / OpenSearchHTTPS URL with credentials, or the URL and an API keysearch, count, get, indices, mapping, cluster_health, plus index_document and delete_document when read-only is off
SSHhost, user, and a private key or passwordrun (with a command allow-list), read_file, list_files, system_info
Kubernetesthe API server URL, a service-account token, and the cluster CA if it is privatenamespaces, pods, deployments, services, logs, describe, events, plus scale, restart and delete_pod when read-only is off
Prometheusthe server URL (Prometheus, Thanos, Mimir, Grafana Cloud), and a token or basic credentials if it needs themquery, query_range, series, labels, alerts, targets. Read-only by nature.
Object storage (S3)access key and secret; endpoint for non-AWSlist_buckets, list_objects, get_object, stat_object, plus put_object and delete_object when read-only is off
REST API (OpenAPI)a base URL or an OpenAPI document, and an optional keyone tool per operation from the document, or a single request tool
GraphQLthe endpoint URL and an optional token (bearer, or a named header such as a Shopify access token)schema (introspection, rendered compactly), query. Mutations are refused unless read-only is off.

The list a client sees is exactly the tools of the connectors in that environment, prefixed with the server's short name. Works with any S3-compatible store (MinIO, Cloudflare R2, DigitalOcean Spaces), any HTTP API with an OpenAPI 3 document, any GraphQL endpoint with introspection on, and hosted flavours of the databases (ClickHouse Cloud, Elastic Cloud, Azure SQL, Grafana Cloud metrics).

Guard rails

Networking

Exorails connects from a small set of fixed egress addresses, shown on the connector's setup screen. If your database or server sits behind a firewall, allow those addresses. For a private network with no inbound access, install Exorails Connect on a machine that can see the target: an outbound tunnel, only the routes you declare, and the connector picks the machine under Reach via.

Adding one

  1. Open an environment, add a tool, and pick the connector.
  2. Paste the credential and adjust the options (read-only, limits, allowed commands).
  3. Exorails opens the connection to verify it; the tools appear only once it answered. The credential is stored encrypted in the environment's vault.

Change the options later from the Tools tab; the connector is re-verified. Rotate the credential by rotating the secret; the connector picks up the new value.