UNPKG

@afterxleep/doc-bot

Version:

Generic MCP server for intelligent documentation access in any project

75 lines (74 loc) 2.13 kB
{ "name": "@afterxleep/doc-bot", "version": "1.23.1", "description": "Generic MCP server for intelligent documentation access in any project", "type": "module", "main": "src/index.js", "bin": { "doc-bot": "bin/doc-bot.js" }, "scripts": { "start": "node bin/doc-bot.js --verbose", "start:watch": "node bin/doc-bot.js --verbose --watch", "start:examples": "node bin/doc-bot.js --docs ./samples --verbose", "dev": "node bin/doc-bot.js --verbose --watch", "test": "NODE_OPTIONS=--experimental-vm-modules jest", "test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch", "test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage", "test:e2e": "node test/fixtures/create-test-docs.js && NODE_OPTIONS=--experimental-vm-modules jest test/e2e.test.js", "test:unit": "NODE_OPTIONS=--experimental-vm-modules jest src/services/__tests__", "test:setup": "node test/fixtures/create-test-docs.js", "lint": "eslint src/ bin/ --ext .js", "lint:fix": "eslint src/ bin/ --ext .js --fix" }, "keywords": [ "mcp", "documentation", "ai", "claude", "cursor", "model-context-protocol", "docs", "intelligent", "inference" ], "author": "Daniel Loren <daniel@afterxleep.com>", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/afterxleep/doc-bot.git" }, "bugs": { "url": "https://github.com/afterxleep/doc-bot/issues" }, "homepage": "https://github.com/afterxleep/doc-bot#readme", "dependencies": { "@modelcontextprotocol/sdk": "^1.18.0", "commander": "^14.0.0", "chokidar": "^4.0.3", "fs-extra": "^11.3.2", "glob": "^11.0.3", "yaml": "^2.8.1", "better-sqlite3": "^12.2.0", "axios": "^1.12.2", "tar": "^7.4.0", "adm-zip": "^0.5.16", "plist": "^3.1.0" }, "devDependencies": { "eslint": "^8.57.0", "jest": "^29.7.0", "supertest": "^6.3.0" }, "engines": { "node": ">=18.0.0" }, "files": [ "src/", "bin/", "prompts/", "README.md", "LICENSE", "AGENT_INTEGRATION_RULE.txt" ] }