UNPKG

mcp-context-engineering

Version:

The intelligent context optimization system for AI coding assistants. Built with Cole's PRP methodology, Context Portal knowledge graphs, and production-ready MongoDB architecture.

94 lines 2.48 kB
{ "name": "mcp-context-engineering", "version": "3.2.0", "description": "The intelligent context optimization system for AI coding assistants. Built with Cole's PRP methodology, Context Portal knowledge graphs, and production-ready MongoDB architecture.", "main": "dist/src/index.js", "type": "module", "bin": { "mcp-context-engineering": "dist/src/index.js" }, "engines": { "node": ">=18.12.0" }, "repository": { "type": "git", "url": "https://github.com/romiluz13/mcp-context-engineering.git" }, "homepage": "https://github.com/romiluz13/mcp-context-engineering#readme", "bugs": { "url": "https://github.com/romiluz13/mcp-context-engineering/issues" }, "scripts": { "build": "tsc", "build:watch": "tsc --watch", "dev": "tsx src/index.ts", "start": "node dist/src/index.js", "test": "vitest run", "test:watch": "vitest --watch", "test:coverage": "vitest run --coverage", "lint": "eslint src/**/*.ts", "lint:fix": "eslint src/**/*.ts --fix", "format": "prettier --write \"src/**/*.{ts,js,json}\"", "format:check": "prettier --check \"src/**/*.{ts,js,json}\"" }, "keywords": [ "mcp", "model-context-protocol", "context-engineering", "ai-assistants", "ai-coding", "cursor", "windsurf", "claude-code", "mongodb", "vector-search", "embeddings", "typescript", "prp-methodology", "knowledge-graph", "machine-learning", "intelligent-context", "universal", "open-source" ], "author": { "name": "Rom Iluz", "email": "romiluz13@gmail.com", "url": "https://github.com/romiluz13" }, "contributors": [ { "name": "Universal Context Engineering Team" } ], "license": "MIT", "dependencies": { "@modelcontextprotocol/sdk": "^1.13.2", "mongodb": "^6.12.0", "zod": "^3.25.26", "dotenv": "^16.4.5", "voyageai": "^0.0.4", "openai": "^4.68.0" }, "devDependencies": { "@types/node": "^22.15.29", "typescript": "^5.8.3", "tsx": "^4.19.0", "vitest": "^2.1.5", "@vitest/coverage-v8": "^2.1.5", "eslint": "^8.57.0", "@typescript-eslint/eslint-plugin": "^6.21.0", "@typescript-eslint/parser": "^6.21.0", "prettier": "^3.5.3", "eslint-config-prettier": "^10.1.5", "eslint-plugin-prettier": "^5.4.1" }, "files": [ "dist/**/*", "src/**/*", "README.md", "LICENSE", "CONTRIBUTING.md", ".env.example" ] }