- Explore MCP Servers
- atla-mcp-server
Atla Mcp Server
What is Atla Mcp Server
Atla MCP Server is an implementation of the Model Context Protocol (MCP) that provides a standardized interface for large language models (LLMs) to interact with the Atla API, facilitating state-of-the-art LLM evaluation.
Use cases
Use cases include evaluating the performance of LLMs in various tasks, providing feedback for model improvement, and integrating LLM evaluation into larger AI systems.
How to use
To use Atla MCP Server, you need an Atla API key. After cloning the repository and setting up a Python virtual environment, install the necessary dependencies and set your ATLA_API_KEY in your environment variables.
Key features
Key features include the ability to evaluate LLM responses using specific criteria, and to conduct evaluations across multiple criteria, providing detailed scores and critiques for each response.
Where to use
Atla MCP Server can be used in fields such as artificial intelligence, natural language processing, and machine learning, particularly in applications that require evaluation of language models.
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Overview
What is Atla Mcp Server
Atla MCP Server is an implementation of the Model Context Protocol (MCP) that provides a standardized interface for large language models (LLMs) to interact with the Atla API, facilitating state-of-the-art LLM evaluation.
Use cases
Use cases include evaluating the performance of LLMs in various tasks, providing feedback for model improvement, and integrating LLM evaluation into larger AI systems.
How to use
To use Atla MCP Server, you need an Atla API key. After cloning the repository and setting up a Python virtual environment, install the necessary dependencies and set your ATLA_API_KEY in your environment variables.
Key features
Key features include the ability to evaluate LLM responses using specific criteria, and to conduct evaluations across multiple criteria, providing detailed scores and critiques for each response.
Where to use
Atla MCP Server can be used in fields such as artificial intelligence, natural language processing, and machine learning, particularly in applications that require evaluation of language models.
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Content
Atla MCP Server
An MCP server implementation providing a standardized interface for LLMs to interact with the Atla API for state-of-the-art LLMJ evaluation.
Learn more about Atla here. Learn more about the Model Context Protocol here.
Available Tools
evaluate_llm_response: Evaluate an LLM’s response to a prompt using a given evaluation criteria. This function uses an Atla evaluation model under the hood to return a dictionary containing a score for the model’s response and a textual critique containing feedback on the model’s response.evaluate_llm_response_on_multiple_criteria: Evaluate an LLM’s response to a prompt across multiple evaluation criteria. This function uses an Atla evaluation model under the hood to return a list of dictionaries, each containing an evaluation score and critique for a given criteria.
Usage
To use the MCP server, you will need an Atla API key. You can find your existing API key here or create a new one here.
Installation
We recommend using
uvto manage the Python environment. See here for installation instructions.
Manually running the server
Once you have uv installed and have your Atla API key, you can manually run the MCP server using uvx (which is provided by uv):
ATLA_API_KEY=<your-api-key> uvx atla-mcp-server
Connecting to the server
Having issues or need help connecting to another client? Feel free to open an issue or contact us!
OpenAI Agents SDK
For more details on using the OpenAI Agents SDK with MCP servers, refer to the official documentation.
- Install the OpenAI Agents SDK:
pip install openai-agents
- Use the OpenAI Agents SDK to connect to the server:
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:
...
Claude Desktop
For more details on configuring MCP servers in Claude Desktop, refer to the official MCP quickstart guide.
- Add the following to your
claude_desktop_config.jsonfile:
{
"mcpServers": {
"atla-mcp-server": {
"command": "uvx",
"args": [
"atla-mcp-server"
],
"env": {
"ATLA_API_KEY": "<your-atla-api-key>"
}
}
}
}
- Restart Claude Desktop to apply the changes.
You should now see options from atla-mcp-server in the list of available MCP tools.
Cursor
For more details on configuring MCP servers in Cursor, refer to the official documentation.
- Add the following to your
.cursor/mcp.jsonfile:
{
"mcpServers": {
"atla-mcp-server": {
"command": "uvx",
"args": [
"atla-mcp-server"
],
"env": {
"ATLA_API_KEY": "<your-atla-api-key>"
}
}
}
}
You should now see atla-mcp-server in the list of available MCP servers.
Contributing
Contributions are welcome! Please see the CONTRIBUTING.md file for details.
License
This project is licensed under the MIT License. See the LICENSE file for details.
Dev Tools Supporting MCP
The following are the main code editors that support the Model Context Protocol. Click the link to visit the official website for more information.










