@emmahyde/thinking-patterns
Version:
MCP server combining systematic thinking, mental models, debugging approaches, and stochastic algorithms for comprehensive cognitive pattern support
84 lines (83 loc) • 2.51 kB
JSON
{
"name": "@emmahyde/thinking-patterns",
"version": "1.0.4",
"description": "MCP server combining systematic thinking, mental models, debugging approaches, and stochastic algorithms for comprehensive cognitive pattern support",
"license": "MIT",
"author": "Emma Hyde",
"homepage": "https://github.com/emmahyde/thinking-patterns",
"bugs": "https://github.com/emmahyde/thinking-patterns/issues",
"type": "module",
"bin": {
"thinking-patterns": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "npx tsc --listFiles --project tsconfig.json && chmod +x dist/*.js",
"prepare": "npm run build",
"watch": "npx tsc --watch",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"prepublishOnly": "npm run build",
"start": "node dist/index.js",
"docker": "docker build -t waldzellai/thinking-patterns .",
"dev": "npm run watch",
"test": "NODE_OPTIONS=--experimental-vm-modules npx vitest run",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules npx vitest",
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules npx vitest run --coverage",
"test:ci": "NODE_OPTIONS=--experimental-vm-modules npx vitest run --coverage",
"lint": "echo \"No linting configured\" && exit 0",
"deploy": "smithery deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emmahyde/thinking-patterns.git"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"@types/chalk": "^2.2.4",
"ascii-table3": "^0.9.0",
"boxen": "^8.0.1",
"chalk": "^5.4.1",
"string-width": "^7.2.0",
"wrap-ansi": "^9.0.0",
"yargs": "^18.0.0",
"zod": "^3.25.63"
},
"devDependencies": {
"@types/node": "^22.15.23",
"@types/yargs": "^17.0.33",
"@vitest/coverage-v8": "^2.1.9",
"@vitest/ui": "^2.1.9",
"source-map": "^0.7.4",
"typescript": "^5.8.3",
"vitest": "^2.1.9",
"why-is-node-running": "^3.2.2"
},
"keywords": [
"mcp",
"sequential-thinking",
"mental-models",
"debugging",
"problem-solving",
"stochastic-algorithms",
"probabilistic-decision-making",
"markov-decision-process",
"monte-carlo",
"reinforcement-learning",
"collaborative-reasoning",
"decision-frameworks",
"metacognitive-monitoring",
"scientific-method",
"structured-argumentation",
"visual-reasoning",
"ai",
"cognitive-tools"
],
"engines": {
"node": ">=20"
}
}