SurrealDB for your agents.
Connect SurrealDB once and every agent you run inside Even (Claude Code, Codex, OpenCode, Even Agents) can use it: 13 curated tools, discovered on demand, with your key stored on your machine and every call going direct to SurrealDB.
What agents can do with SurrealDB
Curated for agents: the calls that matter, with schemas and descriptions written for tool use, not an endpoint dump.
surrealdb_get_healthCheck if the database server and storage engine are running.
surrealdb_selectSelect all records from a table.
surrealdb_create_recordCreate a new record in a table. The body is the record data as a JSON object.
surrealdb_get_recordGet a single record by its id.
surrealdb_sql_queryExecute a raw SurrealQL query (SELECT, CREATE, UPDATE, DEFINE, etc.).
surrealdb_update_recordUpdate an existing record in a table (merge).
surrealdb_delete_recordDelete a record by its id.
surrealdb_signupSign up a new user for a scope using email/password authentication.
surrealdb_signinSign in (authenticate) to a scope with email/password. Returns a JWT token.
surrealdb_set_namespaceSwitch the active namespace (USE NS).
surrealdb_list_tablesList all table names in the current namespace/database (INFO TABLE).
surrealdb_define_tableCreate or update a table schema using DEFINE TABLE.
surrealdb_kill_queryKill (cancel) a running query by its UUID.
Connect it in a minute
The connect flow is agent-driven: Even opens the key page in its own browser and collects the key through a secure native field. It never passes through the chat.
- Paste the prompt below into any agent running inside Even, or click Connect in Even's catalog.
- Start SurrealDB with a root user: surreal start --user root --pass secret.
- Use the root username and password as HTTP Basic auth credentials.
- Set the NS (Namespace) and DB (Database) headers for scoped queries.
- Paste the key into Even's secure field. Even verifies it and your agents are live.
Connect SurrealDB to Even: call connect_begin("surrealdb") on the even-connect MCP and walk me through it.
Select all records from table, create new record with data, and execute SurrealQL queries.
More Even Connect services
One MCP server, a handful of meta-tools, every service below. Agents search for the right tool at run time, so context stays lean.