Skip to content
Merged
Show file tree
Hide file tree
Changes from 7 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
11 changes: 11 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
node_modules
dist
.git
.github
.cursor
npm-debug.log
*.log
.env
.env.*
coverage
*.tsbuildinfo
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches: [main]
push:
branches: [main]
workflow_call: # Allow this workflow to be called by other workflows
workflow_call: # Allow this workflow to be called by other workflows

jobs:
build-and-test:
Expand Down Expand Up @@ -38,6 +38,9 @@ jobs:
- name: Build
run: npm run build

- name: Smoke test CLI
run: node dist/index.js --help

- name: Run tests
run: npm test

Expand All @@ -58,3 +61,6 @@ jobs:
- name: Security audit
run: npm audit --audit-level=moderate
continue-on-error: true

- name: Package dry run
run: npm pack --dry-run
20 changes: 19 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,26 +8,42 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]

### Added
- N/A

- Initial TypeScript implementation of Pinecone Read-Only MCP
- Hybrid search support (dense + sparse embeddings)
- Semantic reranking using BGE reranker model
- Dynamic namespace discovery
- Metadata filtering support
- Full TypeScript type definitions
- Comprehensive test suite
- GitHub Actions CI/CD workflows
- ESLint and Prettier configuration
- Complete documentation

### Changed

- N/A

### Deprecated

- N/A

### Removed

- N/A

### Fixed

- N/A

### Security

- N/A
Comment thread
coderabbitai[bot] marked this conversation as resolved.

## [0.1.1] - 2026-01-27

### Changed

- Enhanced TypeScript strict mode with additional compiler checks:
- Added `noUncheckedIndexedAccess` for safer array/object access
- Added `noImplicitOverride` to require explicit override keywords
Expand All @@ -36,12 +52,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Simplified build script to use standard `tsc` command

### Fixed

- Fixed build script that was suppressing TypeScript compilation errors with `|| exit 0`
- Fixed all type safety issues to comply with stricter TypeScript checks

## [0.1.0] - 2026-01-26

### Added

- Initial release of TypeScript version
- Feature parity with Python version
- Production-ready implementation with:
Expand Down
27 changes: 27 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
FROM node:20-bookworm-slim AS build

WORKDIR /app

COPY package*.json ./
RUN npm ci

COPY . .
RUN npm run build

FROM node:20-bookworm-slim AS runtime

WORKDIR /app
ENV NODE_ENV=production

# Create non-root runtime user
RUN useradd --create-home --uid 10001 mcpuser

COPY package*.json ./
RUN npm ci --omit=dev && npm cache clean --force

COPY --from=build /app/dist ./dist
COPY README.md LICENSE CHANGELOG.md ./

USER mcpuser

ENTRYPOINT ["node", "dist/index.js"]
Loading
Loading