package.json•5 kB
{
"name": "analytical-mcp-server",
"version": "0.1.0",
"description": "A specialized MCP server focused on enhancing AI capabilities for structured problem-solving, analytical reasoning, and decision-making",
"private": true,
"type": "module",
"bin": {
"analytical-mcp-server": "./build/index.js"
},
"files": [
"build"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"check-api-keys": "node tools/check-api-keys.js",
"pretest": "node tools/check-api-keys.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
"test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"test:unit": "node --experimental-vm-modules node_modules/jest/bin/jest.js --selectProjects unit",
"test:unit:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --selectProjects unit --watch",
"test:unit:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --selectProjects unit --coverage",
"test:ci": "node --experimental-vm-modules node_modules/jest/bin/jest.js --ci --coverage --maxWorkers=2 --silent",
"test:quick": "node --experimental-vm-modules node_modules/jest/bin/jest.js --selectProjects unit --passWithNoTests",
"test:optimized": "node --max-old-space-size=4096 --expose-gc --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand",
"test:debug": "node --inspect-brk --expose-gc --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand",
"test:leak-detection": "node --max-old-space-size=4096 --expose-gc --experimental-vm-modules node_modules/jest/bin/jest.js --detectOpenHandles --detectLeaks --logHeapUsage",
"typecheck": "tsc --noEmit",
"typecheck:src": "tsc --project tsconfig.test.json",
"typecheck:test": "tsc --noEmit --skipLibCheck",
"test:strict": "npm run typecheck:src && npm run test",
"test:integration": "node --experimental-vm-modules node_modules/jest/bin/jest.js --selectProjects integration",
"test:integration:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --selectProjects integration --coverage",
"test:integration:no-api": "node --experimental-vm-modules node_modules/jest/bin/jest.js --selectProjects integration --testPathIgnorePatterns 'research_api_integration'",
"test:exa": "node --experimental-vm-modules node_modules/jest/bin/jest.js src/integration/exa-research.test.ts",
"test:research": "node --experimental-vm-modules node_modules/jest/bin/jest.js src/integration/research-verification.test.ts",
"test:server": "node --experimental-vm-modules node_modules/jest/bin/jest.js src/integration/server-tools.test.ts",
"test:api-keys": "node --experimental-vm-modules node_modules/jest/bin/jest.js src/integration/api-keys.test.ts",
"test:data-pipeline": "node --experimental-vm-modules node_modules/jest/bin/jest.js src/integration/data_processing_pipeline.test.ts",
"test:market-analysis": "node --experimental-vm-modules node_modules/jest/bin/jest.js src/integration/market_analysis_workflow.test.ts",
"test:config": "node --experimental-vm-modules node_modules/jest/bin/jest.js src/integration/feature_configuration.test.ts",
"cache:stats": "node tools/cache-manager.js stats",
"cache:clear": "node tools/cache-manager.js clear",
"cache:preload": "node tools/cache-manager.js preload",
"cache:demo": "node examples/cache_performance_demo.js",
"nlp:demo": "node examples/advanced_nlp_demo.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.16.0",
"compromise": "^14.12.0",
"dotenv": "^16.4.5",
"mathjs": "^14.3.0",
"natural": "^6.9.0",
"node-fetch": "^3.3.2",
"papaparse": "^5.4.1",
"pos": "^0.4.2",
"sentiment": "^5.0.2",
"spellchecker": "^3.7.1",
"tokenize-text": "^1.1.3",
"uuid": "^9.0.1",
"wink-lemmatizer": "^3.0.4",
"wink-nlp": "^1.14.3",
"wink-pos-tagger": "^2.2.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/natural": "^5.1.5",
"@types/node": "^24.2.1",
"@types/node-fetch": "^2.6.13",
"@types/papaparse": "^5.3.14",
"@types/sentiment": "^5.0.2",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^8.39.0",
"@typescript-eslint/parser": "^8.39.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.3",
"jest": "^29.7.0",
"nock": "^13.5.1",
"prettier": "^3.6.2",
"ts-jest": "^29.4.1",
"typescript": "^5.9.2"
},
"engines": {
"node": ">=20.0.0"
}
}