mcp-decisive
Version:
MCP server for WRAP decision-making framework with structured output
57 lines (56 loc) • 1.32 kB
JSON
{
"name": "mcp-decisive",
"version": "0.0.2",
"description": "MCP server for WRAP decision-making framework with structured output",
"type": "module",
"main": "dist/index.js",
"bin": {
"mcp-decisive": "./bin/mcp-decisive.js"
},
"files": [
"dist/**/*",
"bin/**/*"
],
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"prepublishOnly": "npm run typecheck && npm run build",
"lint": "eslint src --ext .ts",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:ui": "vitest --ui"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.15.1",
"neverthrow": "^8.2.0",
"zod": "^3.24.5"
},
"devDependencies": {
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"@vitest/ui": "^3.2.3",
"eslint": "^9.18.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^3.2.3"
},
"author": "yoda keisuke",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yodakeisuke/mcp-decisive.git"
},
"keywords": [
"mcp",
"model-context-protocol",
"wrap",
"decision-making",
"ai-tools",
"structured-output"
],
"engines": {
"node": ">=18.0.0"
}
}