docs/customize/deep-dives/mcp-examples.mdx
Ready-to-use MCP server configurations for popular tools and services. Copy these into your config.yaml to get started.
MCP servers are only available in agent mode. For configuration concepts and setup details, see the MCP deep dive.
Sentry's MCP server provides tools for querying issues, viewing stack traces, and searching events.
Remote (SSE):
mcpServers:
- name: Sentry
type: sse
url: https://mcp.sentry.io
Local (stdio) — requires an auth token:
mcpServers:
- name: Sentry
command: npx
args:
- "-y"
- "@sentry/mcp-server@latest"
- "--transport"
- "stdio"
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
See also: Sentry MCP Error Monitoring guide
mcpServers:
- name: Slack
command: npx
args:
- "-y"
- "@anthropic/slack-mcp"
env:
SLACK_OAUTH_TOKEN: ${{ secrets.SLACK_OAUTH_TOKEN }}
mcpServers:
- name: Linear
type: sse
url: https://mcp.linear.app/sse
apiKey: ${{ secrets.LINEAR_OAUTH_TOKEN }}
mcpServers:
- name: PostHog
type: streamable-http
url: https://mcp.posthog.com/mcp
apiKey: ${{ secrets.POSTHOG_API_KEY }}
See also: PostHog + GitHub Continuous AI guide
mcpServers:
- name: Supabase
type: streamable-http
url: https://mcp.supabase.com/mcp
apiKey: ${{ secrets.SUPABASE_ACCESS_TOKEN }}
See also: Supabase MCP Database Workflow guide
mcpServers:
- name: Netlify
type: streamable-http
url: https://openapi.netlify.com/v1/mcp
apiKey: ${{ secrets.NETLIFY_API_TOKEN }}
See also: Netlify MCP Continuous Deployment guide
mcpServers:
- name: Atlassian
type: sse
url: https://mcp.atlassian.com/v1/sse
env:
ATLASSIAN_API_TOKEN: ${{ secrets.ATLASSIAN_API_TOKEN }}
See also: Atlassian MCP cookbook
mcpServers:
- name: GitHub
command: npx
args:
- "-y"
- "@modelcontextprotocol/server-github"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
See also: GitHub MCP cookbook
mcpServers:
- name: Sanity
command: npx
args:
- "-y"
- "@sanity/mcp"
env:
SANITY_PROJECT_ID: ${{ secrets.SANITY_PROJECT_ID }}
SANITY_DATASET: ${{ secrets.SANITY_DATASET }}
SANITY_API_TOKEN: ${{ secrets.SANITY_API_TOKEN }}
MCP_USER_ROLE: ${{ secrets.MCP_USER_ROLE }}
See also: Sanity MCP cookbook
mcpServers:
- name: Snyk
command: npx
args:
- "-y"
- "@snyk/mcp"
env:
SNYK_API_TOKEN: ${{ secrets.SNYK_API_TOKEN }}
See also: Snyk MCP cookbook
mcpServers:
- name: dlt
command: npx
args:
- "-y"
- "dlthub/dlt-mcp"
See also: dlt MCP cookbook
mcpServers:
- name: Chrome DevTools
command: npx
args:
- "-y"
- "chrome-devtools-mcp@latest"
See also: Chrome DevTools MCP guide
These integrations have guides available but use direct API integration rather than MCP: