An MCP server that provides with docs and support to instrument your AI application with Arize AX.
This MCP server provides your LLM with docs and examples to instrument your AI apps with Arize AX. It also provides with access to Arize support. Connect it to your IDE or LLM and get curated tracing examples, best practices and Arize support!
Make sure uv - the fast Python package manager - is installed on your system. Installation instructions: uv installation guide.
- 
On macOS:
pip install uv
or
brew install uv
 - 
On Linux:
curl -LsSf https://astral.sh/uv/install.sh | less - 
On Windows:
powershell -c "irm https://astral.sh/uv/install.ps1 | more"
 
- Go to Cursor Settings > MCP.
 - Click "Add new global MCP server" and add the server to your config JSON.
 - Remove the 
envsection if you don't have access to RunLLM. 
Example config:
"arize-tracing-assistant": {
  "command": "uvx",
  "args": [
    "arize-tracing-assistant@latest"
  ]
}- Go to Claude Desktop Settings.
 - In Developer > Edit Config and add this to your config JSON:
 
"arize-tracing-assistant": {
  "command": "/Users/myuser/miniconda3/bin/uvx",
  "args": [
   "arize-tracing-assistant@latest"
  ]
}Add the following snippet to your MCP config file:
  "mcpServers": {
    "arize-tracing-assistant": {
      "command": "uvx",
      "args": [
      "arize-tracing-assistant@latest"
    ]
    }
  }Install using the Gemini CLI extension:
gemini extensions install https://github.com/Arize-ai/arize-tracing-assistantOnce the MCP server is running, ask your IDE or LLM questions about tracing or general Arize support like...
- Instrument this app using Arize
 - Can you use manual instrumentation so that I have more control over my traces?
 - How can I redact sensitive information from my spans?
 - Use decorators to have more control over the span attributes
 - Can you make sure the context of this trace is propagated across these tool calls?
 - Where can I find my Arize keys?
 
- 
Make sure the JSON configs are perfectly formatted.
 - 
Clear the uv cache with
uv cache cleanto force accessing the latest version. - 
Make sure your
uvcommand is pointing to the right location by runningwhich uv, or simply use the full path. - 
The server should start in the terminal just by running:
uvx arize-tracing-assistant@latest
 - 
Use the Anthropic MCP inspector by running:
npx @modelcontextprotocol/inspector uvx arize-tracing-assistant@latest