-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.61 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
{
"name": "@m00nsolutions/mcp-server",
"version": "1.5.3",
"mcpName": "io.github.m00nreport/mcp-server",
"description": "Agentic test management over MCP: an AI assistant can author test cases, plan manual executions, link automation to the cases it covers, cut releases and read project health in M00N Report, an AI-native test management platform.",
"type": "module",
"main": "dist/cli.js",
"types": "dist/cli.d.ts",
"bin": {
"m00n-mcp": "bin/m00n-mcp.js"
},
"files": [
"dist",
"preview-snapshot.json",
"bin",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"snapshot:refresh": "node scripts/refresh-snapshot.mjs",
"prepublishOnly": "npm test",
"clean": "rimraf dist",
"test": "npm run build && node scripts/run-tests.mjs"
},
"keywords": [
"mcp",
"model-context-protocol",
"m00n",
"m00nreport",
"test-reporting",
"ai",
"claude",
"cursor",
"testing",
"analytics",
"playwright",
"jest",
"test management",
"test case management",
"TMS"
],
"author": "M00N Report",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/m00nreport/mcp-server.git"
},
"homepage": "https://m00nreport.com/documentation/mcp/quick-start",
"bugs": {
"url": "https://github.com/m00nreport/mcp-server/issues"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"axios": "^1.19.0",
"zod": "^3.25.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"rimraf": "^5.0.0",
"typescript": "^5.3.0"
}
}