Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
2947635
feat: stub some hooks for the MCP server (#1107)
nirinchev Aug 22, 2025
e8b3647
chore: adds config options relevant for MCP server MCP-133 (#1108)
himanshusinghs Aug 25, 2025
fe988f3
feat: stub some hooks for the MCP server (#1107) (#1110)
nirinchev Aug 29, 2025
5e6e677
chore: introduces VSCodeMCPConnectionManager to talk to contributed M…
himanshusinghs Sep 3, 2025
e77b1f3
chore: adds vscode specific connection error handler MCP-132 (#1113)
himanshusinghs Sep 3, 2025
758b8da
chore: modifies MCP server activation flow MCP-169 (#1114)
himanshusinghs Sep 4, 2025
023c3c8
chore: set telemetry app name if not set or is vscode MCP-131 (#1112)
himanshusinghs Sep 4, 2025
679f9a7
Update src/test/suite/mcp/mcpController.test.ts
himanshusinghs Sep 11, 2025
44269e2
Update src/mcp/mcpConnectionErrorHandler.ts
himanshusinghs Sep 11, 2025
7c8281d
Update package.json
himanshusinghs Sep 11, 2025
9f22a92
chore: switch to mongodb-mcp-server@prerelease
himanshusinghs Sep 11, 2025
6ed2766
chore: register bearer token as secret for redaction
himanshusinghs Sep 11, 2025
324922d
chore: stop an already runing server if any
himanshusinghs Sep 11, 2025
767cd45
chore: don't stop diff views for package-lock
himanshusinghs Sep 11, 2025
7e26560
Merge remote-tracking branch 'origin/main' into feat/mcp-integration
himanshusinghs Sep 11, 2025
f57080e
Merge remote-tracking branch 'origin/main' into feat/mcp-integration
himanshusinghs Sep 12, 2025
95cc208
chore: fix tests
himanshusinghs Sep 12, 2025
b26f08b
chore: fix getMessageContent
himanshusinghs Sep 12, 2025
e1dd133
chore: node engine config to allow node 23 users as well
himanshusinghs Sep 12, 2025
9a31811
fix: consider VSCode configured settings when starting MCP server (#1…
himanshusinghs Sep 16, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package-lock.json linguist-generated
4 changes: 0 additions & 4 deletions .github/workflows/actions/test-and-build/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,6 @@ runs:
fi
shell: bash

- name: Install npm
run: npm install -g npm@8.19.4
shell: bash

- name: Install Dependencies
shell: bash
run: |
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/draft-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ jobs:
- name: Setup Node.js Environment
uses: actions/setup-node@v4
with:
node-version: 20.16.0
node-version: 22.15.1
cache: npm

- name: Determine Next Version
shell: bash
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/publish-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,8 @@ jobs:
- name: Setup Node.js Environment
uses: actions/setup-node@v4
with:
node-version: 20.16.0

- name: Install npm
run: npm install -g npm@8.19.4
node-version: 22.15.1
cache: npm

- name: Run node-gyp bug workaround script
run: |
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test-and-build-from-fork.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ jobs:
- name: Setup Node.js Environment
uses: actions/setup-node@v4
with:
node-version: 20.16.0
node-version: 22.15.1
cache: npm

- name: Install Dependencies
run: npm ci --omit=optional
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test-and-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ jobs:
- name: Setup Node.js Environment
uses: actions/setup-node@v4
with:
node-version: 20.16.0
node-version: 22.15.1
cache: npm

- name: Run tests and build
uses: ./.github/workflows/actions/test-and-build
Expand Down
Loading
Loading