Skip to content

Commit 43ffc4e

Browse files
authored
MCP - Context7 (#177)
* MCP - Context7 Context7 Setup Guide in order to claim a bounty set by Hannes * added recommended mcp servers to sidebar
1 parent d38fa3d commit 43ffc4e

File tree

6 files changed

+126
-0
lines changed

6 files changed

+126
-0
lines changed

docs/features/mcp/overview.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,5 @@ This documentation is organized into several sections:
1818
* [**STDIO & SSE Transports**](/features/mcp/server-transports) - Detailed comparison of local (STDIO) and remote (SSE) transport mechanisms with deployment considerations for each approach.
1919

2020
* [**MCP vs API**](/features/mcp/mcp-vs-api) - Analysis of the fundamental distinction between MCP and REST APIs, explaining how they operate at different layers of abstraction for AI systems.
21+
22+
* [**Recommended MCP Servers**](/features/mcp/recommended-mcp-servers) - Curated list of tested and recommended MCP servers for Roo Code, including a setup guide for Context7.
Lines changed: 123 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,123 @@
1+
---
2+
title: Recommended MCP Servers
3+
sidebar_label: Recommended MCP Servers
4+
---
5+
6+
# Recommended MCP Servers
7+
8+
While Roo Code can connect to any Model Context Protocol (MCP) server that follows the specification, the community has already built several high-quality servers that work out-of-the-box. This page curates the servers we **actively recommend** and provides step-by-step setup instructions so you can get productive in minutes.
9+
10+
> We'll keep this list up-to-date. If you maintain a server you'd like us to consider, please open a pull-request.
11+
12+
---
13+
14+
## Context7
15+
16+
`Context7` is our first-choice general-purpose MCP server. It ships a collection of highly-requested tools, installs with a single command, and has excellent support across every major editor that speaks MCP.
17+
18+
### Why we recommend Context7
19+
20+
* **One-command install** – everything is bundled, no local build step.
21+
* **Cross-platform** – runs on macOS, Windows, Linux, or inside Docker.
22+
* **Actively maintained** – frequent updates from the Upstash team.
23+
* **Rich toolset** – database access, web-search, text utilities, and more.
24+
* **Open source** – released under the MIT licence.
25+
26+
---
27+
28+
## Installing Context7 in Roo Code
29+
30+
There are two common ways to register the server:
31+
32+
1. **Global configuration** – available in every workspace.
33+
2. **Project-level configuration** – checked into version control alongside your code.
34+
35+
We'll cover both below.
36+
37+
### 1. Global configuration
38+
39+
1. Open the Roo Code **MCP settings** panel by clicking the <Codicon name="server" /> icon.
40+
2. Click **Edit Global MCP**.
41+
3. Paste the JSON below inside the `mcpServers` object and save.
42+
43+
```json
44+
{
45+
"mcpServers": {
46+
"context7": {
47+
"command": "npx",
48+
"args": ["-y", "@upstash/context7-mcp@latest"]
49+
}
50+
}
51+
}
52+
```
53+
54+
**Windows (cmd.exe) variant**
55+
56+
```json
57+
{
58+
"mcpServers": {
59+
"context7": {
60+
"type": "stdio",
61+
"command": "cmd",
62+
"args": ["/c", "npx", "-y", "@upstash/context7-mcp@latest"]
63+
}
64+
}
65+
}
66+
```
67+
68+
Also on **Windows (cmd)** you may need to invoke `npx` through `cmd.exe`:
69+
70+
<img src="/img/recommended-mcp-servers/context7-global-setup.png" alt="Adding Context7 to the global MCP settings" width="600" />
71+
72+
### 2. Project-level configuration
73+
74+
If you prefer to commit the configuration to your repository, create a file called `.roo/mcp.json` at the project root and add the same snippet:
75+
76+
```json
77+
{
78+
"mcpServers": {
79+
"context7": {
80+
"command": "npx",
81+
"args": ["-y", "@upstash/context7-mcp@latest"]
82+
}
83+
}
84+
}
85+
```
86+
87+
**Windows (cmd.exe) variant**
88+
89+
```json
90+
{
91+
"mcpServers": {
92+
"context7": {
93+
"type": "stdio",
94+
"command": "cmd",
95+
"args": ["/c", "npx", "-y", "@upstash/context7-mcp@latest"]
96+
}
97+
}
98+
}
99+
```
100+
101+
<img src="/img/recommended-mcp-servers/context7-project-setup.png" alt="Adding Context7 to a project-level MCP file" width="600" />
102+
103+
> When both global and project files define a server with the same name, **the project configuration wins**.
104+
105+
---
106+
107+
## Verifying the installation
108+
109+
1. Make sure **Enable MCP Servers** is turned on in the MCP settings panel.
110+
2. You should now see **Context7** listed. Click the <Codicon name="activate" /> toggle to start it if it isn't already running.
111+
3. Roo Code will prompt you the first time a Context7 tool is invoked. Approve the request to continue.
112+
113+
<img src="/img/recommended-mcp-servers/context7-running.png" alt="Context7 running in Roo Code" width="400" />
114+
115+
---
116+
117+
## Next steps
118+
119+
* Browse the list of tools shipped with Context7 in the server pane.
120+
* Configure **Always allow** for the tools you use most to streamline your workflow.
121+
* Want to expose your own APIs? Check out the [MCP server creation guide](/features/mcp/using-mcp-in-roo#enabling-or-disabling-mcp-server-creation).
122+
123+
Looking for other servers? Watch this page – we'll add more recommendations soon!

sidebars.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ const sidebars: SidebarsConfig = {
5151
'features/mcp/what-is-mcp',
5252
'features/mcp/server-transports',
5353
'features/mcp/mcp-vs-api',
54+
'features/mcp/recommended-mcp-servers',
5455
],
5556
},
5657
{
41.5 KB
Loading
8.92 KB
Loading
29.1 KB
Loading

0 commit comments

Comments
 (0)