@waldzellai/stochasticthinking
Version:
MCP server for stochastic algorithms and probabilistic decision making
57 lines • 1.67 kB
JSON
{
"name": "@waldzellai/stochasticthinking",
"version": "0.0.1",
"description": "MCP server for stochastic algorithms and probabilistic decision making",
"license": "MIT",
"author": "Waldzell AI",
"homepage": "https://github.com/waldzellai/stochasticthinking",
"bugs": "https://github.com/waldzellai/stochasticthinking/issues",
"type": "module",
"bin": {
"mcp-server-stochasticthinking": "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/stochasticthinking ."
},
"repository": {
"type": "git",
"url": "https://github.com/waldzellai/stochasticthinking.git"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.5.0",
"@types/chalk": "^0.4.31",
"chalk": "^5.3.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/node": "^22",
"@types/yargs": "^17.0.32",
"typescript": "^5.3.3"
},
"keywords": [
"mcp",
"sequential-thinking",
"stochastic-algorithms",
"probabilistic-decision-making",
"markov-decision-process",
"monte-carlo",
"reinforcement-learning",
"ai",
"cognitive-tools"
],
"engines": {
"node": ">=18"
}
}