-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.95 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@dashclaw/mcp-server",
"version": "2.0.1",
"mcpName": "io.github.ucsandman/dashclaw",
"description": "MCP server for DashClaw governance and governed execution — guard, record, invoke, discover capabilities, and run provider operations (Vercel, Neon, Stripe, GitHub, and more) through the governance loop.",
"type": "module",
"bin": {
"dashclaw-mcp": "bin/dashclaw-mcp.js"
},
"main": "./lib/server.js",
"exports": {
".": "./lib/server.js",
"./client": "./lib/client.js",
"./tools": "./lib/tools.js",
"./resources": "./lib/resources.js"
},
"files": [
"bin/",
"lib/",
"docs/",
"NOTICE",
"LICENSE",
"README.md"
],
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"claude-code",
"dashclaw",
"ai-governance",
"agent-governance"
],
"author": "DashClaw",
"license": "Apache-2.0",
"homepage": "https://github.com/ucsandman/DashClaw/tree/main/mcp-server#readme",
"bugs": {
"url": "https://github.com/ucsandman/DashClaw/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ucsandman/DashClaw.git",
"directory": "mcp-server"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx src/index.ts",
"cli": "tsx src/cli.ts",
"start": "node lib/index.js",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"verify": "npm run typecheck && npm run build && npm test && npm audit",
"prepublishOnly": "npm run verify"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"fast-xml-parser": "^5.8.0",
"yaml": "^2.5.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.10.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vitest": "^3.2.6"
},
"overrides": {
"vite": "6.4.3",
"esbuild": "^0.28.1"
}
}