Using MCP Access
A guide for MCP recipients — how to connect your AI assistant and start querying data.
What you've been given
Someone in your organization has set up a data pipeline that syncs your business data — orders, customers, invoices, and more — into a centralized warehouse. They've given you an API key that lets your AI assistant query this data directly. You don't need a Gatlas account — just your API key and an AI tool that supports MCP.
Setup
Claude Code (terminal)
Run this command in your terminal, replacing YOUR_API_KEY with the key you received:
claude mcp add gatlas --transport sse --url https://www.gatlas.ai/api/mcp --header "Authorization: Bearer YOUR_API_KEY"Claude Desktop
Add this to your Claude Desktop config file (claude_desktop_config.json):
{
"mcpServers": {
"gatlas": {
"url": "https://www.gatlas.ai/api/mcp",
"transport": "sse",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}Cursor
Add this to your Cursor MCP settings:
{
"mcpServers": {
"gatlas": {
"url": "https://www.gatlas.ai/api/mcp",
"transport": "sse",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}Note
What you can ask
Once connected, you can ask your AI assistant questions in plain language. Here are some examples:
Querying data
- "What were total revenues last quarter?"
- "Show me the top 10 customers by order value"
- "Compare monthly recurring revenue across the last 6 months"
Exploring available data
- "What data sources are available?"
- "What tables do I have access to?"
- "Describe the monthly_revenue view"
Checking health
- "Are all data syncs running successfully?"
- "When was the last sync for Shopify?"
- "Which connections have errors?"
Troubleshooting
- "Tool not found" — Make sure you've added the MCP server correctly. Check that the URL is
https://www.gatlas.ai/api/mcpand your API key is in the Authorization header. - "Unauthorized" or "Invalid API key" — Double-check your API key. It starts with
gat_. If it's not working, ask your admin to generate a new one. - "No data returned" — Your access may be scoped to specific entities or views. Ask your admin what data you have access to.
- "View not found" — The view may not be published to MCP, or it may not be in your scope. Ask your admin to check that the view has MCP Visible enabled and is tagged to your entities.