Description
Phoenix MCP Server provides a unified interface to Arize Phoenix's capabilities through the Model Context Protocol. Developed by Arize AI, this TypeScript implementation enables AI assistants to manage prompts, explore datasets, and run experiments against the Phoenix platform. The server exposes tools for creating and iterating on prompts across different LLM providers (OpenAI, Anthropic, Google), working with evaluation datasets, and visualizing experiment results, making it particularly valuable for teams building and evaluating LLM applications who want to leverage Phoenix's observability features through AI assistants.
Installation
npx -y @arizeai/phoenix-mcp npm install @arizeai/phoenix-mcp git clone https://github.com/arize-ai/phoenix/tree/HEAD/js/packages/phoenix-mcp Claude Desktop Configuration
Add this configuration to your Claude Desktop config file to enable this MCP server:
Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json
Config file location: %APPDATA%\Claude\claude_desktop_config.json
Config file location: ~/.config/Claude/claude_desktop_config.json
{
"mcpServers": {
"arize-phoenix": {
"command": "npx",
"args": [
"-y",
"@arizeai/phoenix-mcp"
]
}
}
}