You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Added comprehensive documentation for MCP JSON configuration files
- Support for single server and Claude-style multi-server JSON formats
- Updated Quick Start section with YAML/JSON tabs
- Added environment variable templating documentation
- References PR #7956 which added JSON MCP support
Generated with [Continue](https://continue.dev)
Co-Authored-By: Continue <[email protected]>
Now test your MCP server by prompting the following command:
48
60
@@ -60,6 +72,57 @@ You can set up an MCP server to search the Continue documentation directly from
60
72
61
73
For complete setup instructions, troubleshooting, and usage examples, see the [Continue MCP Reference](/reference/continue-mcp).
62
74
75
+
## How to Configure MCP Servers with JSON Files
76
+
77
+
In addition to YAML configuration, you can now configure MCP servers using JSON files. This feature allows you to use Claude-style MCP configurations and provides lower friction when migrating from other tools.
78
+
79
+
### JSON Configuration Options
80
+
81
+
You can create JSON configuration files in the `.continue/mcpServers` folder in two formats:
82
+
83
+
#### Single MCP Server Configuration
84
+
85
+
Create a JSON file where the filename becomes the server name:
JSON configurations support environment variable templating using the `${VAR_NAME}` syntax, which is automatically converted to Continue's `${{ secrets.VAR_NAME }}` format internally.
0 commit comments