{ "name": "@damoqiongqiu/mcp-local-rag", "version": "0.21.0", "description": "Code intelligence for AI coding assistants — AST-level semantic code search with keyword boost. Index your codebase, search by meaning, keep everything local.", "type": "module", "main": "dist/index.js", "bin": { "mcp-local-rag": "dist/index.js" }, "files": [ "dist", "skills" ], "keywords": [ "typescript", "mcp", "mcp-server", "model-context-protocol", "rag", "vector-search", "semantic-search", "embeddings", "lancedb", "transformers", "huggingface", "local-ai", "offline", "privacy", "code-search", "code-intelligence", "sourcegraph-alternative", "developer-tools", "claude-code", "cursor", "codex", "skills" ], "author": "Shinsuke Kagawa", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/damoqiongqiu/mcp-local-rag.git" }, "scripts": { "build": "tsc", "start": "node dist/index.js", "dev": "tsx src/index.ts", "watch": "tsx watch src/index.ts", "type-check": "tsc --noEmit", "type-check:test": "tsc -p tsconfig.test.json", "test": "node scripts/run-vitest-with-device.mjs cpu run --exclude 'src/__tests__/e2e/visual-ingest-e2e.test.ts'", "test:webgpu": "pnpm run test:webgpu:main-path", "test:webgpu:main-path": "node scripts/run-vitest-with-device.mjs webgpu run src/server/__tests__/rag-server.embedding.integration.test.ts src/server/__tests__/rag-server.ingest.integration.test.ts src/server/__tests__/rag-server.search.integration.test.ts src/__tests__/cli/ingest-cross-path-equivalence.test.ts", "test:webgpu:full": "node scripts/run-vitest-with-device.mjs webgpu run --exclude 'src/__tests__/e2e/visual-ingest-e2e.test.ts'", "test:watch": "vitest", "test:e2e": "RUN_E2E=1 vitest run src/__tests__/e2e/visual-ingest-e2e.test.ts", "format": "biome format --write src", "format:check": "biome format src", "lint": "biome lint src", "lint:fix": "biome lint --write src", "check": "biome check src", "check:fix": "biome check --write src", "check:unused": "knip --include exports", "check:deps": "dpdm --no-tree --no-warning --exit-code circular:1 -T --tsconfig ./tsconfig.json --exclude \"(node_modules|__tests__|\\.test\\.ts$|\\.spec\\.ts$)\" \"src/**/*.ts\"", "check:all": "pnpm run check && pnpm run lint && pnpm run format:check && pnpm run check:unused && pnpm run check:deps && pnpm run build && pnpm run type-check:test && pnpm run test", "cleanup:processes": "bash ./scripts/cleanup-test-processes.sh", "test:safe": "pnpm test && pnpm run cleanup:processes", "prepare": "husky" }, "dependencies": { "@huggingface/transformers": "^4.2.0", "@lancedb/lancedb": "^0.31.0", "@modelcontextprotocol/sdk": "^1.29.0", "@mozilla/readability": "0.6.0", "chokidar": "^5.0.0", "code-chunk": "^0.1.14", "ignore": "^7.0.5", "jsdom": "^29.1.1", "mammoth": "^1.12.0", "minimatch": "^10.2.5", "mupdf": "^1.28.0", "turndown": "7.2.4", "undici": "^7.28.0" }, "devDependencies": { "@biomejs/biome": "^2.5.1", "@types/jsdom": "^28.0.3", "@types/node": "^26.0.1", "@types/turndown": "5.0.6", "@vitest/coverage-v8": "^4.1.9", "dpdm": "^4.2.0", "husky": "^9.1.7", "knip": "^6.23.0", "lint-staged": "^17.0.8", "tsx": "^4.23.0", "typescript": "^6.0.3", "vitest": "^4.1.9" }, "packageManager": "pnpm@11.9.0", "engines": { "node": ">=22" }, "lint-staged": { "src/**/*.{ts,tsx}": [ "biome check --write --no-errors-on-unmatched", "biome format --write --no-errors-on-unmatched" ] }, "mcpName": "io.github.damoqiongqiu/mcp-local-rag", "publishConfig": { "access": "public" } }