Example MCP Servers

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

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 }}

Slack

mcpServers:
  - name: Slack
    command: npx
    args:
      - "-y"
      - "@anthropic/slack-mcp"
    env:
      SLACK_OAUTH_TOKEN: ${{ secrets.SLACK_OAUTH_TOKEN }}

Linear

mcpServers:
  - name: Linear
    type: sse
    url: https://mcp.linear.app/sse
    apiKey: ${{ secrets.LINEAR_OAUTH_TOKEN }}

PostHog

mcpServers:
  - name: PostHog
    type: streamable-http
    url: https://mcp.posthog.com/mcp
    apiKey: ${{ secrets.POSTHOG_API_KEY }}

Supabase

mcpServers:
  - name: Supabase
    type: streamable-http
    url: https://mcp.supabase.com/mcp
    apiKey: ${{ secrets.SUPABASE_ACCESS_TOKEN }}

Netlify

mcpServers:
  - name: Netlify
    type: streamable-http
    url: https://openapi.netlify.com/v1/mcp
    apiKey: ${{ secrets.NETLIFY_API_TOKEN }}

Atlassian

mcpServers:
  - name: Atlassian
    type: sse
    url: https://mcp.atlassian.com/v1/sse
    env:
      ATLASSIAN_API_TOKEN: ${{ secrets.ATLASSIAN_API_TOKEN }}

GitHub

mcpServers:
  - name: GitHub
    command: npx
    args:
      - "-y"
      - "@modelcontextprotocol/server-github"
    env:
      GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Sanity

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 }}

Snyk

mcpServers:
  - name: Snyk
    command: npx
    args:
      - "-y"
      - "@snyk/mcp"
    env:
      SNYK_API_TOKEN: ${{ secrets.SNYK_API_TOKEN }}

dlt

mcpServers:
  - name: dlt
    command: npx
    args:
      - "-y"
      - "dlthub/dlt-mcp"

Chrome DevTools

mcpServers:
  - name: Chrome DevTools
    command: npx
    args:
      - "-y"
      - "chrome-devtools-mcp@latest"
These integrations have guides available but use direct API integration rather than MCP: