The Atla MCP Server is MCP server implementation that provides a standardized interface for LLMs to interact with the Atla SDK and use our evaluation models.


Here is a quick preview of how you’d connect to the server using the OpenAI Agents SDK.

import os

from agents import Agent
from agents.mcp import MCPServerStdio

async with MCPServerStdio(
params={
"command": "uvx",
"args": ["atla-mcp-server"],
"env": {"ATLA_API_KEY": os.environ.get("ATLA_API_KEY")}
}
) as atla_mcp_server:
...


Refer to our Github page to learn more about how you can use it!