Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .github/workflows/chromadb-version-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4.4.0

# R4: Parse chromadb image tag from all docker-compose files and verify
# the version is outside the vulnerable range 1.0.0 – 1.5.8.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v7
with:
node-version: "24.15.0"
node-version: "24.19.0"

- name: Enable Corepack (yarn)
run: corepack enable
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v7
with:
node-version: "24.15.0"
node-version: "24.19.0"

- name: Enable Corepack (yarn)
run: corepack enable
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/security-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v7
with:
node-version: "24.15.0"
node-version: "24.19.0"

- name: Enable Corepack (yarn)
run: corepack enable
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v7
with:
node-version: "24.15.0"
node-version: "24.19.0"

- name: Enable Corepack (yarn)
run: corepack enable
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:24.15.0-slim AS builder
FROM node:24.19.0-slim AS builder

WORKDIR /app

Expand All @@ -17,7 +17,7 @@ COPY src ./src
RUN yarn build

# Production stage
FROM node:24.15.0-slim
FROM node:24.19.0-slim

# MCP Register Label
LABEL io.modelcontextprotocol.server.name="io.github.meloncafe/chromadb-remote-mcp"
Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "3.0.0",
"description": "ChromaDB Remote MCP Server with Streamable HTTP Transport",
"type": "module",
"packageManager": "yarn@4.14.1",
"packageManager": "yarn@4.18.0",
"main": "build/index.js",
"mcpName": "io.github.meloncafe/chromadb-remote-mcp",
"private": true,
Expand Down Expand Up @@ -49,9 +49,9 @@
"chromadb": "^3.5.0",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"express-rate-limit": "^8.6.1",
"express-rate-limit": "^8.6.2",
"http-proxy-middleware": "^4.2.0",
"jose": "^6.2.7"
"jose": "^6.2.8"
},
"resolutions": {
"ip-address": "^10.2.0"
Expand All @@ -61,19 +61,19 @@
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/node": "^26.1.2",
"@typescript-eslint/eslint-plugin": "^8.65.0",
"@typescript-eslint/parser": "^8.65.0",
"@typescript-eslint/eslint-plugin": "^8.66.0",
"@typescript-eslint/parser": "^8.66.0",
"eslint": "^10.8.0",
"jest": "^30.4.2",
"jest-junit": "^17.0.0",
"prettier": "^3.9.6",
"ts-jest": "^29.4.12",
"tsx": "^4.23.5",
"tsx": "^4.23.7",
"typescript": "^6.0.3"
},
"engines": {
"node": ">=24.15.0",
"yarn": ">=4.14.1"
"node": ">=24.19.0",
"yarn": ">=4.18.0"
},
"dependenciesMeta": {
"esbuild": {
Expand Down
Loading
Loading