Skip to content

Commit 32aaee5

Browse files
authored
Merge branch 'main' into args-tests
2 parents aedcdfd + c12de89 commit 32aaee5

24 files changed

+1424
-150
lines changed

.github/dependabot.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,22 @@ updates:
44
directory: "/"
55
schedule:
66
interval: "weekly"
7+
ignore:
8+
# We are ignoring major updates on yargs-parser because yargs-parser@22
9+
# does not play nicely when bundled using webpack. Our VSCode extension
10+
# bundles MCP server with the extension code and yargs-parser from MCP
11+
# server ends up on the final bundle which leads to issues such as -
12+
# https://github.com/mongodb-js/vscode/issues/1149.
13+
#
14+
# This was reported to yargs-parser as well -
15+
# https://github.com/yargs/yargs-parser/issues/517 and we already tried
16+
# their suggestion about disabling the meta resolution in webpack,
17+
# alongside others (dependency overrides, disabling the bundling of
18+
# yargs-parser), and none of the solutions yield a working extension. So
19+
# until we figure out a fix for this we need to keep mongodb-mcp-server
20+
# working with v21 of yargs-parser.
21+
- dependency-name: "yargs-parser"
22+
update-types: ["version-update:semver-major"]
723
- package-ecosystem: "github-actions"
824
directory: "/"
925
schedule:

.github/workflows/code-health-fork.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ jobs:
2020
- uses: GitHubSecurityLab/actions-permissions/monitor@v1
2121
if: matrix.os == 'ubuntu-latest'
2222
- uses: actions/checkout@v5
23+
- uses: docker/setup-docker-action@v4
24+
if: matrix.os == 'ubuntu-latest'
25+
name: Setup Docker Environment
26+
with:
27+
set-host: true
2328
- uses: actions/setup-node@v5
2429
with:
2530
node-version-file: package.json

.github/workflows/code-health.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ jobs:
2121
- uses: GitHubSecurityLab/actions-permissions/monitor@v1
2222
if: matrix.os == 'ubuntu-latest'
2323
- uses: actions/checkout@v5
24+
- uses: docker/setup-docker-action@v4
25+
if: matrix.os == 'ubuntu-latest'
26+
name: Setup Docker Environment
27+
with:
28+
set-host: true
2429
- uses: actions/setup-node@v5
2530
with:
2631
node-version-file: package.json

.github/workflows/jira-issue.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
5555
- name: Add comment
5656
if: steps.create.outputs.issue-key
57-
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043
57+
uses: peter-evans/create-or-update-comment@e8674b075228eee787fea43ef493e45ece1004c9
5858
with:
5959
issue-number: ${{ github.event.issue.number }}
6060
body: |
@@ -104,7 +104,7 @@ jobs:
104104
transition-id: 61
105105
- name: Add closure comment
106106
if: steps.close_jira_ticket.outcome == 'success'
107-
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043
107+
uses: peter-evans/create-or-update-comment@e8674b075228eee787fea43ef493e45ece1004c9
108108
with:
109109
issue-number: ${{ github.event.issue.number }}
110110
body: |

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -360,6 +360,7 @@ The MongoDB MCP Server can be configured using multiple methods, with the follow
360360
| `exportTimeoutMs` | `MDB_MCP_EXPORT_TIMEOUT_MS` | 300000 | Time in milliseconds after which an export is considered expired and eligible for cleanup. |
361361
| `exportCleanupIntervalMs` | `MDB_MCP_EXPORT_CLEANUP_INTERVAL_MS` | 120000 | Time in milliseconds between export cleanup cycles that remove expired export files. |
362362
| `atlasTemporaryDatabaseUserLifetimeMs` | `MDB_MCP_ATLAS_TEMPORARY_DATABASE_USER_LIFETIME_MS` | 14400000 | Time in milliseconds that temporary database users created when connecting to MongoDB Atlas clusters will remain active before being automatically deleted. |
363+
| `voyageApiKey` | `MDB_VOYAGE_API_KEY` | <not set> | API key for communicating with Voyage AI. Used for generating embeddings for Vector search. |
363364

364365
#### Logger Options
365366

0 commit comments

Comments
 (0)