From 0881194a3f4983686b19a5471145aa0a627fb4d5 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Mon, 7 Jul 2025 12:04:32 +0100 Subject: [PATCH] feat(vscode-insiders): add support for new mcp.json config file --- mcp.json | 9 +++++++++ settings.json | 2 +- siren | 3 ++- 3 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 mcp.json diff --git a/mcp.json b/mcp.json new file mode 100644 index 0000000..3d9bcf3 --- /dev/null +++ b/mcp.json @@ -0,0 +1,9 @@ +{ + "servers": { + "context7": { + "url": "https://mcp.context7.com/mcp", + "type": "http" + } + }, + "inputs": [] +} diff --git a/settings.json b/settings.json index be88e83..1b4aa50 100644 --- a/settings.json +++ b/settings.json @@ -276,7 +276,7 @@ ], // // =========================================================================== - // MARK: MCP Servers (VSCode) + // MARK: MCP Servers (VSCode) - Soon to be moved to separate mcp.json file. // =========================================================================== // "mcp": { diff --git a/siren b/siren index ae0ca1b..a0c40b1 100755 --- a/siren +++ b/siren @@ -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" )