RAG Documentation MCP Server

{ "name": "@rahulretnan/mcp-ragdocs", "version": "1.0.0", "description": "An MCP server for semantic documentation search and retrieval using vector databases to augment LLM capabilities.", "private": false, "type": "module", "bin": { "@rahulretnan/mcp-ragdocs": "./build/index.js" }, "files": [ "build", "README.md", "LICENSE" ], "scripts": { "build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"", "prepare": "npm run build", "watch": "tsc --watch", "inspector": "npx @modelcontextprotocol/inspector build/index.js", "start": "node build/index.js" }, "keywords": [ "mcp", "model-context-protocol", "rag", "documentation", "vector-database", "qdrant", "claude", "llm" ], "author": "rahul", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/rahulretnan/mcp-ragdocs.git" }, "bugs": { "url": "https://github.com/rahulretnan/mcp-ragdocs/issues" }, "homepage": "https://github.com/rahulretnan/mcp-ragdocs#readme", "dependencies": { "@azure/openai": "2.0.0", "@modelcontextprotocol/sdk": "1.0.3", "@qdrant/js-client-rest": "1.12.0", "axios": "1.7.9", "cheerio": "1.0.0", "cors": "^2.8.5", "express": "^4.21.2", "net": "^1.0.2", "ollama": "^0.5.11", "openai": "4.76.2", "playwright": "1.49.1" }, "devDependencies": { "@types/cors": "^2.8.17", "@types/express": "^5.0.0", "@types/node": "^20.17.10", "ts-node": "^10.9.2", "typescript": "^5.7.2" }, "publishConfig": { "access": "public" } }