bottlenecks-mcp-server
Version:
Model Context Protocol server for Bottlenecks database - enables AI agents like Claude to interact with bottleneck data
102 lines (101 loc) • 2.5 kB
JSON
{
"name": "bottlenecks-mcp-server",
"version": "1.2.0",
"type": "module",
"description": "Model Context Protocol server for Bottlenecks database - enables AI agents like Claude to interact with bottleneck data",
"keywords": [
"mcp",
"model-context-protocol",
"bottlenecks",
"ai",
"claude",
"agents",
"database",
"productivity",
"workflow",
"automation"
],
"author": "Ian Derrington <ian@bottlenecks.institute> (Bottlenecks Institute)",
"license": "MIT",
"homepage": "https://github.com/bottlenecks-institute/mcp-server",
"repository": {
"type": "git",
"url": "https://github.com/bottlenecks-institute/mcp-server.git"
},
"bugs": {
"url": "https://github.com/bottlenecks-institute/mcp-server/issues"
},
"bin": {
"bottlenecks-mcp-server": "./bin/bottlenecks-mcp.js",
"bottlenecks-mcp": "./bin/bottlenecks-mcp.js"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"bin/",
"lib/",
"templates/",
"docs/",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.3",
"commander": "^11.1.0",
"chalk": "^4.1.2",
"boxen": "^7.0.0",
"ora": "^6.3.1",
"inquirer": "^9.2.0",
"fs-extra": "^11.1.1",
"dotenv": "^16.3.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0",
"tsx": "^4.0.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"@types/jest": "^29.5.0",
"ts-jest": "^29.1.0"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node lib/index.js",
"test": "jest --passWithNoTests",
"test:integration": "jest --testPathPatterns=integration --passWithNoTests",
"lint": "eslint src/ --ext .js",
"lint:fix": "eslint src/ --ext .ts,.js --fix",
"prepublishOnly": "npm run build && npm test",
"security:audit": "npm audit --audit-level=moderate",
"security:fix": "npm audit fix"
},
"preferGlobal": true,
"os": [
"darwin",
"linux",
"win32"
],
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/*.test.ts"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/lib/",
"jest.setup.ts"
],
"collectCoverageFrom": [
"src/**/*.ts",
"!src/**/*.test.ts",
"!src/**/*.d.ts",
"!src/__tests__/jest.setup.ts"
],
"testTimeout": 30000
}
}