mcp-server-sigma
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-server-sigmaDeploy the Q3 sales template to the Marketing folder and swap sources to Prod."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
🚀 mcp-server-sigma
Supercharge your AI Agents with native Sigma Computing superpowers! ⚡
An enterprise-grade Model Context Protocol (MCP) server with 155 tools covering connections, workbooks, data models, members, teams, deployments, webhooks, multi-tenant operations, and composite workflow recipes straight to your favorite AI assistant.
⚠️ Disclaimers & Safety Warnings
Community Project Disclaimermcp-server-sigma is an independent open-source community project. It is not affiliated with, sponsored by, endorsed by, or supported by Sigma Computing, Inc. "Sigma Computing" is a trademark of Sigma Computing, Inc.
Credentials & Safety Notice
This server uses API credentials scoped to your Sigma organization. Tools can mutate workbooks, users, teams, and data models.
Read-Only Mode: To run safely without mutation risk, set
SIGMA_MCP_READONLY=1(grants 83 read-only tools).Destructive Safety Gates: All single-delete tools require explicit
confirm=True. Bulk destructive operations (sigma_bulk_deactivate_members,sigma_bulk_remove_team_members) are disabled by default and requireSIGMA_MCP_ALLOW_BULK_DESTRUCTIVE=1.Read SECURITY.md before deploying to production.
Related MCP server: Atlassian MCP Server
💡 Why This Exists
Sigma Computing has a unique architectural asymmetry that shapes how you automate it:
Data Models are 100% Code-Representable: You can programmatically construct data models, define columns, joins, and SQL logic, update JSON specs, and swap warehouse sources via API.
Workbook Layouts are UI-Only: Workbook pages, elements, charts, KPIs, and controls have no direct layout-as-code API.
The canonical path to automated BI dashboards is:
Build the layout once in the Sigma UI, save it as a template, then instantiate and source-swap it programmatically forever after! 🎨 ➡️ 🤖
Our composite recipe tools (like sigma_deploy_template_to_folder and sigma_swap_workbook_sources) automate this exact pattern in a single MCP tool call (returning structured step progress or partial failure details if an intermediate step fails):
graph TD
UI["Sigma UI"] -->|"1. Build Layout Once & Save"| TPL["Sigma Template"]
Agent["AI Agent / LLM"] -->|"2. Call sigma_deploy_template_to_folder"| MCP["mcp-server-sigma"]
MCP -->|"POST /v2/templates/{id}/instantiate"| API1["Instantiate Workbook"]
MCP -->|"POST /v2/workbooks/{id}/swap_sources"| API2["Swap Warehouse Sources"]
API2 -->|"Delivered"| Dest["Target Customer Folder"]📦 Quickstart & Installation
1. Install via pip or uv
pip install mcp-server-sigma
# or with uv
uv pip install mcp-server-sigmaOr run via Docker
docker run --rm -i --env-file .env \
ghcr.io/christianclaudio/mcp-server-sigma:latest2. Set Environment Variables
export SIGMA_CLIENT_ID="your-client-id"
export SIGMA_CLIENT_SECRET="your-client-secret"
export SIGMA_API_BASE_URL="https://api.us-a.aws.sigmacomputing.com"Use the API base URL assigned to your organization's region.
Region | Base URL |
AWS US East |
|
AWS US West |
|
AWS Canada |
|
AWS EU |
|
AWS UK |
|
AWS Australia |
|
Azure US |
|
Azure EU |
|
Azure Canada |
|
Azure UK |
|
Azure Australia |
|
GCP US |
|
GCP Saudi Arabia |
|
🔌 Integration Guides for AI Assistants & IDEs
mcp-server-sigma works seamlessly with all major AI assistants, IDEs, and CLI tools via standard stdio or streamable-http.
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"sigma": {
"command": "sigma-mcp",
"env": {
"SIGMA_CLIENT_ID": "your-client-id",
"SIGMA_CLIENT_SECRET": "your-client-secret",
"SIGMA_API_BASE_URL": "https://api.us-a.aws.sigmacomputing.com"
}
}
}
}For Claude Code CLI:
claude mcp add sigma -- sigma-mcpAdd to your project's .agents/mcp_config.json (or global ~/.gemini/config/mcp_config.json):
{
"mcpServers": {
"sigma": {
"command": "sigma-mcp",
"args": [],
"env": {
"SIGMA_CLIENT_ID": "your-client-id",
"SIGMA_CLIENT_SECRET": "your-client-secret",
"SIGMA_API_BASE_URL": "https://api.us-a.aws.sigmacomputing.com"
}
}
}
}Run in network transport mode (Streamable HTTP) for local CLI & agent extensions:
# Source environment variables from a protected file or secret manager
source .env
# Launch server on HTTP localhost port 8000 for local clients
sigma-mcp --transport streamable-http --host 127.0.0.1 --port 8000Point your local Codex / HTTP SSE client to http://127.0.0.1:8000/sse.
Note for hosted ChatGPT Actions or Custom GPTs: Hosted cloud services cannot reach localhost. Place an authenticating HTTPS proxy (e.g., ngrok, Cloudflare Tunnel, or Caddy with TLS and Auth) in front of the server before connecting cloud services.
Cline / Roo Code Settings (cline_mcp_settings.json):
{
"mcpServers": {
"sigma": {
"command": "sigma-mcp",
"env": {
"SIGMA_CLIENT_ID": "your-client-id",
"SIGMA_CLIENT_SECRET": "your-client-secret",
"SIGMA_API_BASE_URL": "https://api.us-a.aws.sigmacomputing.com"
}
}
}
}Continue.dev Config (~/.continue/config.yaml):
mcpServers:
- name: sigma
command: sigma-mcp
env:
SIGMA_CLIENT_ID: "your-client-id"
SIGMA_CLIENT_SECRET: "your-client-secret"
SIGMA_API_BASE_URL: "https://api.us-a.aws.sigmacomputing.com"Add .github/mcp.json to your repository:
{
"mcpServers": {
"sigma": {
"type": "local",
"command": "sigma-mcp",
"env": {
"SIGMA_CLIENT_ID": "${COPILOT_MCP_SIGMA_CLIENT_ID}",
"SIGMA_CLIENT_SECRET": "${COPILOT_MCP_SIGMA_CLIENT_SECRET}",
"SIGMA_API_BASE_URL": "https://api.us-a.aws.sigmacomputing.com",
"SIGMA_MCP_READONLY": "1"
},
"tools": ["sigma_get_workbook", "sigma_list_workbooks", "sigma_get_data_model"]
}
}
}Note for Copilot Cloud Agents: Cloud code-review integrations must be configured through Repository Settings > Copilot > MCP servers instead.
Add directly via the Cortex CLI:
cortex mcp add sigma-tools -- sigma-mcp🛡️ Safety & Security Controls
Configure behavior using environment variables:
Variable | Default | Description |
| Required | Your Sigma API client ID. |
| Required | Your Sigma API client secret. |
| Required | Region-specific Sigma API host URL. |
|
| Tool registration subset: |
|
| Set |
|
| Set |
|
| Comma-separated allowlist of tenant org IDs permitted for RFC 8693 token exchange. |
|
| Set |
|
| Set |
📊 Feature & Tool Summary
The server registers 155 tools by default across the following domain modules:
Domain | Tools | Key Capabilities |
Workbooks | 33 | CRUD, pages, elements, columns, queries, sources, swap, lineage, exports, materializations, bookmarks, tags, grants, embeds |
Reports | 13 | CRUD, elements, queries, lineage, exports, schedules, sources, duplication |
Data Models | 10 | CRUD, JSON spec inspection & editing, elements, columns, sources, swap, lineage, tags |
Members | 10 | List, get, create, update, deactivate, teams, bulk deactivate, email change, onboarding |
Teams | 10 | List, get, create, delete, members, bulk assign/remove, user attributes |
Connections | 7 | List, get, schema sync, connectivity test, columns, grants |
Multi-Tenant | 6 | List tenants, tenant info, capabilities, cross-tenant connection sync |
Deployments | 6 | List, get, create, add documents, archive |
Templates | 6 | List, get, instantiate, save from workbook, swap sources, shared templates |
Workspaces | 6 | List, get, create, delete, grants |
User Attributes | 9 | CRUD, user/team/tenant value assignments |
Webhooks | 6 | Webhook subscription management, payload signature validation, event history |
Grants | 5 | Access control lists, workbook/workspace/connection grants |
Files & Folders | 4 | Inode search, create folder, update, delete |
Tags | 4 | List, create, tag workbook, tag data model |
Reference | 4 |
|
Composite Recipes | 14 | High-level multi-step workflow recipes |
Note: Domain categories overlap slightly. The 2 bulk-destructive tools (sigma_bulk_deactivate_members, sigma_bulk_remove_team_members) are excluded by default and bring the total to 157 when enabled.
🍳 Composite Workflow Recipes
These high-level tools bundle multi-step API sequences into a single atomic call:
Recipe Tool | What It Does |
| Instantiates a template & swaps warehouse sources in 1 call |
| Triggers a data materialization and polls until complete with timeout |
| Atomically creates a member and assigns them to multiple teams |
| Batch-adds $N$ members to a team in a single request |
| Resolves member emails and batch-removes them from a team |
| Regex-matches members, generates dry-run report, and deactivates |
| Performs RFC 8693 token exchange per tenant to sync all connections |
| Duplicates a workbook directly into a user's home folder |
| Tags a workbook for version promotion (creates tag if missing) |
| Exports workbook/element, handles 204 polling, returns final content |
| Syncs an entire database.schema path across Sigma connections |
| Bulk-transfers workbook ownership from one member email to another |
📐 MCP 2.0 Hints & Safety Annotations
Every tool includes structured MCP hints to assist AI clients with user permission prompts:
Annotation | Count | Meaning |
| 83 | Indicates intended non-mutation; clients may still require explicit user approval |
| 16 | Deletes, deactivates, or revokes; clients should prompt |
| 8 | Safe to retry; same input = same outcome |
| 155 | All tools hit an external API |
🧮 Writing Sigma Formulas
AI models frequently hallucinate SQL or Excel functions when writing Sigma formulas (e.g. using ArrayAgg() instead of List()).
Before writing any Sigma formula, call the built-in reference tool:
# Model prompt helper
Use tool `sigma_formula_pitfalls` to check formula syntax rules.See docs/formulas.md for full syntax details.
👩💻 Local Development & Testing
# Install dev tools
pip install -e ".[dev]"
# Run full test suite with 100% statement line coverage enforcement
pytest --cov=src/sigma_mcp --cov-fail-under=100 --cov-report=term-missing
# Run OpenAPI drift check
python scripts/check_openapi_drift.py
# Run MCP tool contract validation
python scripts/check_tool_contract.py
# Code formatting & type checking
ruff check src/
ruff format --check .
mypy --strict src/🤝 Contributing & Community
Contributions are welcome! Please read CONTRIBUTING.md for development rules, SECURITY.md for security reporting, and CODE_OF_CONDUCT.md for community standards.
📜 License
MIT License.
Copyright (c) 2026 Christian Claudio.
Disclaimer: Not affiliated with, sponsored by, or endorsed by Sigma Computing, Inc.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityAmaintenanceFull-featured MCP server for Apache Superset — 135+ tools for dashboards, charts, datasets, SQL Lab, security (users, roles, RLS, groups), audit, and more. Built-in safety validations.Last updated50MIT
- Alicense-qualityDmaintenanceEnterprise-grade MCP server providing 102 production-ready tools for Jira, Confluence, and Bitbucket, enabling AI agents to manage issues, pages, repositories, and more via natural language.Last updated1MIT
- Flicense-qualityCmaintenanceA modular MCP server exposing tools for integrating with services like GitHub, Redash, Jenkins, Figma, Jira, Confluence, Teams, Datadog, PagerDuty, Slack, and Presto, enabling users to manage these platforms through natural language via an MCP client.Last updated
- Alicense-qualityAmaintenanceProduction-grade Google Sheets MCP server with 25 tools, 410 actions, safety rails, and enterprise features for spreadsheet automation and data analysis.Last updatedMIT
Related MCP Connectors
Security-first WordPress MCP server. 129 tools for Claude, ChatGPT, Gemini. Free on wp.org.
MCP server for interacting with the Supabase platform
Official Microsoft MCP Server to query Microsoft Entra data using natural language
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/christianclaudio/mcp-server-sigma'
If you have feedback or need assistance with the MCP directory API, please join our Discord server