-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "agentstack-mcp",
"version": "1.0.1",
"private": false,
"description": "AgentStack MCP \u2014 one deterministic reasoning stack for AI agents: simulate (ScenarioSim) + decide (DecisionMatrix) + compute (PrecisionCalc) with cross-domain composite tools. Runs over stdio (npx) or as a remote server.",
"type": "module",
"scripts": {
"sync-engines": "bash scripts/sync-engines.sh",
"build": "esbuild worker-src/index.mjs --bundle --format=esm --target=es2022 --platform=neutral --outfile=site/_worker.js --minify",
"deploy": "npm run build && wrangler pages deploy site --project-name agentstack-mcp --branch main --commit-dirty=true",
"dev": "npm run build && wrangler pages dev site",
"test": "node --test tests/*.test.mjs",
"start": "node server.mjs"
},
"dependencies": {
"decimal.js": "^10.4.3"
},
"devDependencies": {
"esbuild": "^0.23.0"
},
"bin": {
"agentstack-mcp": "server.mjs"
},
"files": [
"server.mjs",
"worker-src/",
"README.md",
"LICENSE"
],
"keywords": [
"mcp",
"model-context-protocol",
"mcp-server",
"ai",
"ai-agents",
"llm",
"deterministic",
"claude",
"cursor",
"scenario-simulation",
"decision-analysis",
"financial-modeling",
"npv",
"irr",
"composite-tools"
],
"license": "MIT",
"author": "DataNest",
"homepage": "https://agentstack-mcp.pages.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/inity13/agentstack-mcp.git"
},
"bugs": {
"url": "https://github.com/inity13/agentstack-mcp/issues"
},
"engines": {
"node": ">=18"
},
"mcpName": "io.github.inity13/agentstack-mcp"
}