feat(vscode-insiders): add support for new mcp.json config file

This commit is contained in:
Jim Myhrberg
2025-07-07 12:04:32 +01:00
parent 58507c7ab1
commit 0881194a3f
3 changed files with 12 additions and 2 deletions

9
mcp.json Normal file
View File

@@ -0,0 +1,9 @@
{
"servers": {
"context7": {
"url": "https://mcp.context7.com/mcp",
"type": "http"
}
},
"inputs": []
}

View File

@@ -276,7 +276,7 @@
],
//
// ===========================================================================
// MARK: MCP Servers (VSCode)
// MARK: MCP Servers (VSCode) - Soon to be moved to separate mcp.json file.
// ===========================================================================
//
"mcp": {

3
siren
View File

@@ -14,8 +14,9 @@ declare -A STATIC_SYMLINKS=()
define_settings() {
# List of config files to symlink from current directory.
CONFIG_SOURCES=(
"settings.json"
"keybindings.json"
"mcp.json"
"settings.json"
"snippets"
)