Skip to main content
The Xata MCP server lets AI assistants and agents interact with your Xata organizations, projects, and branches using the Model Context Protocol (MCP).

What is the Xata MCP server?

  • A hosted MCP server that runs alongside the Xata API — there is nothing to install or run locally.
  • Authenticated via OAuth in your browser, or with a Xata API key for headless environments.
  • Accessible from any MCP client that supports remote servers over Streamable HTTP.
Server URL:
The server uses the Streamable HTTP transport. There is no SSE endpoint and no local (npm) version of the server.

Authentication

The MCP server supports two authentication methods:

OAuth

With OAuth-capable clients, you only need the server URL. When your client connects for the first time, it registers itself with Xata, opens a browser window, and asks you to sign in to your Xata account and approve access. Tokens are short-lived and scoped to the MCP server.

API key

Clients that support custom headers can authenticate with a Xata API key instead:
Create a dedicated API key for MCP access rather than reusing an existing key. Store it in an environment variable or your client’s secret storage — never commit it to source control.

Set up your MCP client

Cursor

  1. Open the command palette and search for “Cursor Settings”.
  2. Under Tools & MCP, click New MCP Server.
  3. Add the Xata server to the configuration file that opens:
.cursor/mcp.json
  1. Save the file. Cursor prompts you to authenticate — follow the browser flow and approve access to your Xata account.

Claude Code

Add the server from your terminal:
Then start Claude Code and run the /mcp slash command. Select the xata server and follow the browser instructions to authenticate. To use an API key instead of OAuth (for example, in CI):

VS Code

MCP servers in VS Code require the GitHub Copilot and GitHub Copilot Chat extensions.
  1. Open the Command Palette (Cmd+Shift+P / Ctrl+Shift+P).
  2. Run MCP: Add Server and choose HTTP.
  3. Enter https://api.xata.tech/mcp as the URL and xata as the name.
Alternatively, add it to your configuration manually:
.vscode/mcp.json
Start the server from MCP: List Servers and allow it to authenticate when prompted.

Claude (web and desktop)

Add Xata as a custom connector:
  1. Go to SettingsConnectors.
  2. Click Add custom connector.
  3. Enter https://api.xata.tech/mcp as the server URL and click Add.
  4. Follow the prompts to sign in with your Xata account.
Custom connectors using remote MCP are not available on all Claude plans, and may require an organization owner to add them on team plans. See the Claude documentation for details.

ChatGPT

Connect ChatGPT to Xata using a custom connector:
  1. In ChatGPT, go to SettingsConnectorsAdvanced settings and enable Developer mode.
  2. On the Connectors tab, create a new connector with the server URL:
  1. Choose OAuth for authentication and complete the authorization flow when prompted.
  2. In each chat where you want to use Xata, click the + button and enable the Xata connector under Add sources.

Codex CLI

Add the server from your terminal:
You should be prompted to authenticate — follow the instructions in the browser. Then start codex and run the /mcp slash command to confirm the server is enabled and authenticated.

Gemini CLI

Add the server from your terminal:
Then start gemini and authenticate:

OpenCode

Add the Xata server to your OpenCode configuration file:
~/.config/opencode/opencode.json
Then authenticate from your terminal:

Amp

Add the server from your terminal:
Then start amp — you should be prompted to authenticate in the browser. Run /mcp list tools to confirm the server is connected.

Windsurf

  1. In Windsurf, open the Cascade panel and click the MCP (hammer) icon, then Configure to open the raw configuration file (~/.codeium/windsurf/mcp_config.json).
  2. Add the Xata server entry:
~/.codeium/windsurf/mcp_config.json
  1. Save the file and click Refresh in the Cascade sidebar. Complete the OAuth flow when the browser window opens.

Zed

  1. Open SettingsAIMCP Servers and click Add ServerAdd Remote Server, or edit your settings file directly:
settings.json
  1. Zed prompts you to authenticate against the server using the standard MCP OAuth flow.

Cline

  1. Open Cline in VS Code and click the MCP Servers icon.
  2. In the Remote Servers tab, enter xata as the name, https://api.xata.tech/mcp as the URL, and choose Streamable HTTP as the transport. Or edit the configuration JSON directly:
The transport type must be streamableHttp (camelCase). Omitting it causes Cline to fall back to the legacy SSE transport, which the Xata MCP server does not support.

Other MCP clients

Any MCP client can connect if it supports:
  • Remote MCP servers over Streamable HTTP (not SSE)
  • OAuth with dynamic client registration, or custom HTTP headers for API key authentication
Consult your client’s documentation for where to configure remote MCP servers, and use https://api.xata.tech/mcp as the URL.

Verify the connection

After connecting, ask your assistant:
Use the Xata MCP server to tell me who I’m authenticated as.
The assistant should call the user_info tool and return your user identity (or the API key identity, if you authenticated with a key). If it does, the connection is working.

Available tools

The Xata MCP server exposes the following tools:

Security

  • Prefer OAuth for interactive clients; tokens are short-lived and can be revoked by disconnecting the server in your client.
  • For automation, use a dedicated API key and rotate it regularly.
  • Some tools can modify your data: call_operation can change or delete resources (and requires confirm=true to do so), and run_sql can mutate data when called with write=true. Review the actions your assistant proposes before approving them, and keep a human in the loop for any write or delete.

Troubleshooting

Authentication keeps failing or loops. Remove the Xata server from your client, restart the client, and add the server again to trigger a fresh OAuth flow. The server connects but no tools show up. Make sure you completed the authentication step — most tools require a valid session before they appear. Re-run your client’s authentication flow, then refresh its tool list. See Available tools for the full set. Your client can’t connect at all. Confirm the URL is exactly https://api.xata.tech/mcp and that your client supports Streamable HTTP. SSE-only clients are not supported. The server doesn’t appear in your client. Check the client’s MCP configuration file syntax — the JSON shape differs between clients (mcpServers vs servers vs context_servers, url vs serverUrl) — and check the client’s logs. Most clients require a full restart after configuration changes.