Connect your client
The server is hosted, so there is nothing to install. You need an endpoint URL and an Arize API key. Connect your client walks through setup for Claude Code, Cursor, Claude Desktop, and Codex.What your agent can read
The server exposes 45 read-only tools, plus aserver_info tool for checking which version you reached.
The tools catalog has every tool name and its arguments.
Read-only by design
Nothing the server exposes can change your data. There are no create, update, or delete tools, so an agent that goes off script cannot drop a dataset or overwrite a prompt. Two categories are left out on purpose:- Writes and deletes, which need a docstring stating their blast radius before an agent should be trusted to call them.
- The account administration surface, including API keys, users, roles, and role bindings. Reading those is an information exposure risk even though it changes nothing.
How access works
You authenticate with an Arize API key, passed as a bearer token that gets forwarded to the REST API on every call. See endpoints for the regional URLs and authentication for how to get a key.MCP server, skills, or the CLI?
There are three ways to put Arize AX in front of an agent, and each solves a different problem:- MCP server when you want the agent to answer questions about data already in AX. It can debug a trace, check experiment results, or find the project that contains a span. There is no installation step, and the tools remain available across sessions.
- Skills when you want the agent to do the work: add tracing to an app, build a dataset, run an experiment, create an evaluator, optimize a prompt. Skills can write.
- The Arize AX CLI when you are scripting or wiring Arize into CI/CD and no agent is involved.
Next steps
Connect your client
Per-client setup for Claude Code, Cursor, Claude Desktop, and Codex.
Endpoints
Regional URLs for the MCP server.
Authentication
Get an API key and see how bearer token auth works.
Tool catalog
Every tool, grouped by resource.
REST API reference
The API behind the tools, including authorization, errors, and rate limits.
Skills
Give your agent the write side of Arize AX through the CLI.