-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.6 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
{
"name": "decisionmatrix-mcp",
"version": "1.0.2",
"private": false,
"description": "DecisionMatrix MCP \u2014 deterministic multi-criteria decision analysis for AI agents: score, rank & explain options with weighted-sum, weighted-product, or TOPSIS. Runs over stdio (npx) or as a remote server.",
"type": "module",
"scripts": {
"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 decisionmatrix-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": {
"decisionmatrix-mcp": "server.mjs"
},
"files": [
"server.mjs",
"worker-src/engine.mjs",
"README.md",
"LICENSE"
],
"keywords": [
"mcp",
"model-context-protocol",
"mcp-server",
"ai",
"ai-agents",
"llm",
"deterministic",
"claude",
"cursor",
"decision-analysis",
"mcda",
"weighted-scoring",
"topsis",
"ahp"
],
"license": "MIT",
"author": "DataNest",
"homepage": "https://decisionmatrix-mcp.pages.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/inity13/decisionmatrix-mcp.git"
},
"bugs": {
"url": "https://github.com/inity13/decisionmatrix-mcp/issues"
},
"engines": {
"node": ">=18"
},
"mcpName": "io.github.inity13/decisionmatrix-mcp"
}