Skip to content

Commit f14f6ef

Browse files
Add Example MCP Servers docs page with 12 integrations
New deep-dive page listing ready-to-use MCP server configs for Sentry, Slack, Linear, PostHog, Supabase, Netlify, Atlassian, GitHub, Sanity, Snyk, dlt, and Chrome DevTools. Cross-linked from MCP deep dive and MCP tools pages. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 2e240d4 commit f14f6ef

4 files changed

Lines changed: 194 additions & 1 deletion

File tree

Lines changed: 190 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,190 @@
1+
---
2+
title: "Example MCP Servers"
3+
keywords: [mcp, integrations, sentry, slack, linear, posthog, supabase, netlify, atlassian, github, sanity, snyk, dlt, chrome-devtools]
4+
---
5+
6+
Ready-to-use MCP server configurations for popular tools and services. Copy these into your `config.yaml` to get started.
7+
8+
MCP servers are only available in **agent** mode. For configuration concepts and setup details, see the [MCP deep dive](/customize/deep-dives/mcp).
9+
10+
## Sentry
11+
12+
Sentry's MCP server provides tools for querying issues, viewing stack traces, and searching events.
13+
14+
**Remote (SSE)**:
15+
16+
```yaml
17+
mcpServers:
18+
- name: Sentry
19+
type: sse
20+
url: https://mcp.sentry.io
21+
```
22+
23+
**Local (stdio)** — requires an auth token:
24+
25+
```yaml
26+
mcpServers:
27+
- name: Sentry
28+
command: npx
29+
args:
30+
- "-y"
31+
- "@sentry/mcp-server@latest"
32+
- "--transport"
33+
- "stdio"
34+
env:
35+
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
36+
```
37+
38+
See also: [Sentry MCP Error Monitoring guide](/guides/sentry-mcp-error-monitoring)
39+
40+
## Slack
41+
42+
```yaml
43+
mcpServers:
44+
- name: Slack
45+
command: npx
46+
args:
47+
- "-y"
48+
- "@anthropic/slack-mcp"
49+
env:
50+
SLACK_OAUTH_TOKEN: ${{ secrets.SLACK_OAUTH_TOKEN }}
51+
```
52+
53+
## Linear
54+
55+
```yaml
56+
mcpServers:
57+
- name: Linear
58+
type: sse
59+
url: https://mcp.linear.app/sse
60+
apiKey: ${{ secrets.LINEAR_OAUTH_TOKEN }}
61+
```
62+
63+
## PostHog
64+
65+
```yaml
66+
mcpServers:
67+
- name: PostHog
68+
type: streamable-http
69+
url: https://mcp.posthog.com/mcp
70+
apiKey: ${{ secrets.POSTHOG_API_KEY }}
71+
```
72+
73+
See also: [PostHog + GitHub Continuous AI guide](/guides/posthog-github-continuous-ai)
74+
75+
## Supabase
76+
77+
```yaml
78+
mcpServers:
79+
- name: Supabase
80+
type: streamable-http
81+
url: https://mcp.supabase.com/mcp
82+
apiKey: ${{ secrets.SUPABASE_ACCESS_TOKEN }}
83+
```
84+
85+
See also: [Supabase MCP Database Workflow guide](/guides/supabase-mcp-database-workflow)
86+
87+
## Netlify
88+
89+
```yaml
90+
mcpServers:
91+
- name: Netlify
92+
type: streamable-http
93+
url: https://openapi.netlify.com/v1/mcp
94+
apiKey: ${{ secrets.NETLIFY_API_TOKEN }}
95+
```
96+
97+
See also: [Netlify MCP Continuous Deployment guide](/guides/netlify-mcp-continuous-deployment)
98+
99+
## Atlassian
100+
101+
```yaml
102+
mcpServers:
103+
- name: Atlassian
104+
type: sse
105+
url: https://mcp.atlassian.com/v1/sse
106+
env:
107+
ATLASSIAN_API_TOKEN: ${{ secrets.ATLASSIAN_API_TOKEN }}
108+
```
109+
110+
See also: [Atlassian MCP cookbook](/guides/atlassian-mcp-continue-cookbook)
111+
112+
## GitHub
113+
114+
```yaml
115+
mcpServers:
116+
- name: GitHub
117+
command: npx
118+
args:
119+
- "-y"
120+
- "@modelcontextprotocol/server-github"
121+
env:
122+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
123+
```
124+
125+
See also: [GitHub MCP cookbook](/guides/github-mcp-continue-cookbook)
126+
127+
## Sanity
128+
129+
```yaml
130+
mcpServers:
131+
- name: Sanity
132+
command: npx
133+
args:
134+
- "-y"
135+
- "@sanity/mcp"
136+
env:
137+
SANITY_PROJECT_ID: ${{ secrets.SANITY_PROJECT_ID }}
138+
SANITY_DATASET: ${{ secrets.SANITY_DATASET }}
139+
SANITY_API_TOKEN: ${{ secrets.SANITY_API_TOKEN }}
140+
MCP_USER_ROLE: ${{ secrets.MCP_USER_ROLE }}
141+
```
142+
143+
See also: [Sanity MCP cookbook](/guides/sanity-mcp-continue-cookbook)
144+
145+
## Snyk
146+
147+
```yaml
148+
mcpServers:
149+
- name: Snyk
150+
command: npx
151+
args:
152+
- "-y"
153+
- "@snyk/mcp"
154+
env:
155+
SNYK_API_TOKEN: ${{ secrets.SNYK_API_TOKEN }}
156+
```
157+
158+
See also: [Snyk MCP cookbook](/guides/snyk-mcp-continue-cookbook)
159+
160+
## dlt
161+
162+
```yaml
163+
mcpServers:
164+
- name: dlt
165+
command: npx
166+
args:
167+
- "-y"
168+
- "dlthub/dlt-mcp"
169+
```
170+
171+
See also: [dlt MCP cookbook](/guides/dlt-mcp-continue-cookbook)
172+
173+
## Chrome DevTools
174+
175+
```yaml
176+
mcpServers:
177+
- name: Chrome DevTools
178+
command: npx
179+
args:
180+
- "-y"
181+
- "chrome-devtools-mcp@latest"
182+
```
183+
184+
See also: [Chrome DevTools MCP guide](/guides/chrome-devtools-mcp-performance)
185+
186+
## Other guides
187+
188+
These integrations have guides available but use direct API integration rather than MCP:
189+
190+
- [Notion](/guides/notion-continue-guide)

docs/customize/deep-dives/mcp.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ MCP Servers can be added to your config using `mcpServers`.
2323

2424
<Info>MCP can only be used in the **agent** mode.</Info>
2525

26+
For ready-to-use configurations for popular MCP servers, see [Example MCP Servers](/customize/deep-dives/mcp-examples).
27+
2628
## Quick Start: How to Set Up Your First MCP Server
2729

2830
Below is a quick example of setting up a new MCP server for use in your config:

docs/customize/mcp-tools.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ These servers make it possible to:
1717

1818
## Learn More About MCP servers
1919

20-
Learn more in the [MCP deep dive](/customize/deep-dives/mcp), and view [`mcpServers`](/reference#mcpservers) in the YAML Reference for more details.
20+
Learn more in the [MCP deep dive](/customize/deep-dives/mcp), browse [example MCP server configurations](/customize/deep-dives/mcp-examples), and view [`mcpServers`](/reference#mcpservers) in the YAML Reference for more details.

docs/docs.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,7 @@
145145
"customize/deep-dives/autocomplete",
146146
"customize/deep-dives/development-data",
147147
"customize/deep-dives/mcp",
148+
"customize/deep-dives/mcp-examples",
148149
"customize/deep-dives/custom-providers",
149150
"customize/deep-dives/model-capabilities"
150151
]

0 commit comments

Comments
 (0)