-
-
Notifications
You must be signed in to change notification settings - Fork 9
docs: add Continue.dev MCP snippet to MCP_USAGE.md #61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -54,4 +54,60 @@ To use this React Debugger MCP server with Cline (VS Code extension), add the co | |||||
| } | ||||||
| } | ||||||
| } | ||||||
| ``` | ||||||
| ``` | ||||||
| ## Continue | ||||||
|
|
||||||
| [Continue](https://www.continue.dev/) is an open-source AI coding assistant for VS Code and JetBrains. It supports MCP servers natively via `config.yaml` (preferred) or the legacy `config.json`. | ||||||
|
|
||||||
| ### Option A — Global config · `config.yaml` (recommended) | ||||||
|
|
||||||
| Add to `~/.continue/config.yaml` on macOS/Linux, or `%USERPROFILE%\.continue\config.yaml` on Windows: | ||||||
|
|
||||||
| ```yaml | ||||||
| mcpServers: | ||||||
| - name: react-debugger | ||||||
| command: npx | ||||||
| args: | ||||||
| - -y | ||||||
| - "@nhonh/react-debugger@latest" | ||||||
| - mcp | ||||||
| ``` | ||||||
|
|
||||||
| ### Option B — Workspace-scoped config | ||||||
|
|
||||||
| Create `.continue/mcpServers/react-debugger.yaml` at the root of your project: | ||||||
|
|
||||||
| ```yaml | ||||||
| name: react-debugger | ||||||
| version: 1.0.0 | ||||||
| schema: v1 | ||||||
| mcpServers: | ||||||
| - name: react-debugger | ||||||
| command: npx | ||||||
| args: | ||||||
| - -y | ||||||
| - "@nhonh/react-debugger@latest" | ||||||
| - mcp | ||||||
| ``` | ||||||
|
|
||||||
| ### Option C — Legacy `config.json` | ||||||
|
|
||||||
| If you haven't migrated to YAML yet, add to `~/.continue/config.json`: | ||||||
|
|
||||||
| ```json | ||||||
| { | ||||||
| "mcpServers": [ | ||||||
| { | ||||||
| "name": "react-debugger", | ||||||
| "command": "npx", | ||||||
| "args": ["-y", "@nhonh/react-debugger@latest", "mcp"] | ||||||
| } | ||||||
| ] | ||||||
| } | ||||||
| ``` | ||||||
|
|
||||||
| ### Verify the tools loaded | ||||||
|
|
||||||
| 1. Open VS Code with the Continue extension installed. | ||||||
| 2. Switch Continue to **Agent** mode (MCP tools only work in Agent mode, not Chat mode). | ||||||
| 3. In the Continue chat panel, type: | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The instruction on this line is cut off and ends abruptly. Please complete the sentence to guide the user on what they should type in the Continue chat panel to verify the tools.
Suggested change
|
||||||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In Continue, individual files placed in the
.continue/mcpServers/directory represent a single MCP server configuration. Therefore, they should not contain the top-levelmcpServerslist wrapper or metadata likeversionandschema. Instead, the file should directly define the server's configuration properties (likecommandandargs).