The Atlan Model Context Protocol (MCP) server enables AI agents to interact with Atlan services, providing tools for searching, retrieving, traversing, and updating assets within your data catalog.
Before installing, you'll need:
# Install homebrew (if not already installed)
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
# Add Homebrew to your PATH (if not already done)
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> ~/.zprofile
eval "$(/opt/homebrew/bin/brew shellenv)"
# Install Python 3.11
brew install [email protected]
# Verify installation
python3 --version # Should show Python 3.11.x
# Mac
brew install uv
# Verify installation
uv --version
# Clone the repository
git clone https://github.com/atlanhq/agent-toolkit.git
cd agent-toolkit/modelcontextprotocol
# Create and activate a virtual environment
uv venv
source .venv/bin/activate # On Mac/Linux
# Install dependencies
uv sync
Option 1: Docker Desktop:
docker --version
and docker compose version
Option 2: Docker CLI with Colima:
# Install Colima (for Mac)
brew install colima
# Start Colima
colima start
# Install Docker CLI
brew install docker
# Verify installation
docker --version
# Build the Atlan MCP server image
git clone https://github.com/atlanhq/agent-toolkit.git
cd agent-toolkit/modelcontextprotocol
docker build . -t atlan-mcp-server:latest
,
or click on Claude → Settings)claude_desktop_config.json
For Python-based installation:
{
"mcpServers": {
"Atlan MCP": {
"command": "uv",
"args": [
"run",
"/path/to/your/agent-toolkit/modelcontextprotocol/.venv/bin/atlan-mcp-server"
],
"env": {
"ATLAN_API_KEY": "your_api_key",
"ATLAN_BASE_URL": "https://your-instance.atlan.com",
"ATLAN_AGENT_ID": "your_agent_id"
}
}
}
}
For Docker-based installation:
{
"mcpServers": {
"atlan": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"ATLAN_API_KEY=your_api_key",
"-e",
"ATLAN_BASE_URL=https://your-instance.atlan.com",
"-e",
"ATLAN_AGENT_ID=your_agent_id",
"atlan-mcp-server:latest"
]
}
}
}
.cursor
directory in the project root if not presentmcp.json
file inside the .cursor
directoryThe Atlan MCP server provides these tools to interact with your data catalog:
If Claude shows an error like spawn uv ENOENT
, it likely can't find the uv executable. To fix this:
which uv
to verify the installation pathwhereis uv
For any additional help, contact [email protected] or create a GitHub issue.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > MCP and click "Add new global MCP server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"cursor-rules-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-rules-mcp"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.