Skip to content

Commit 2f64768

Browse files
authored
Merge branch 'main' into chore/mcp-107
2 parents b8542f2 + f78fb4c commit 2f64768

37 files changed

+1092
-651
lines changed

.github/workflows/check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,4 @@ jobs:
5555
rm -rf node_modules
5656
npm pkg set scripts.prepare="exit 0"
5757
npm install --omit=dev
58-
- run: npx -y @modelcontextprotocol/[email protected].2 --cli --method tools/list -- node dist/esm/index.js
58+
- run: npx -y @modelcontextprotocol/[email protected].5 --cli --method tools/list -- node dist/esm/index.js

.github/workflows/code_health.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ${{ matrix.os }}
2020
steps:
2121
- uses: GitHubSecurityLab/actions-permissions/monitor@v1
22-
if: matrix.os != 'windows-latest'
22+
if: matrix.os == 'ubuntu-latest'
2323
- uses: actions/checkout@v5
2424
- uses: actions/setup-node@v4
2525
with:

.github/workflows/code_health_fork.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ${{ matrix.os }}
1919
steps:
2020
- uses: GitHubSecurityLab/actions-permissions/monitor@v1
21-
if: matrix.os != 'windows-latest'
21+
if: matrix.os == 'ubuntu-latest'
2222
- uses: actions/checkout@v5
2323
- uses: actions/setup-node@v4
2424
with:

.github/workflows/prepare_release.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ jobs:
2828
node-version-file: package.json
2929
registry-url: "https://registry.npmjs.org"
3030
cache: "npm"
31+
- name: Install dependencies
32+
run: npm ci
3133
- name: Bump version
3234
id: bump-version
3335
run: |

eslint-rules/no-config-imports.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ const allowedConfigValueImportFiles = [
1010
"src/index.ts",
1111
// Config resource definition that works with the some config values
1212
"src/resources/common/config.ts",
13+
// The file exports, a factory function to create MCPConnectionManager and
14+
// it relies on driver options generator and default driver options from
15+
// config file.
16+
"src/common/connectionManager.ts",
1317
];
1418

1519
// Ref: https://eslint.org/docs/latest/extend/custom-rules

0 commit comments

Comments
 (0)