-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.35 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
{
"name": "ai-testcase-designer-mcp",
"version": "0.1.0",
"description": "An MCP server that generates comprehensive API test plans (positive, negative, edge cases) from endpoint metadata.",
"author": "Mallikarjun Roddannavar",
"license": "MIT",
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/Mallikarjun-Roddannavar/ai-testcase-designer-mcp.git"
},
"homepage": "https://github.com/Mallikarjun-Roddannavar/ai-testcase-designer-mcp",
"keywords": [
"AI",
"testcase",
"LLM",
"MCP",
"automation",
"OpenAPI",
"typescript",
"api-testing",
"excel"
],
"bin": {
"AI Testcase Designer MCP": "./build/index.js"
},
"files": [
"build"
],
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"dev": "nodemon --watch build --exec \"node build/index.js\"",
"test": "jest"
},
"dependencies": {
"@modelcontextprotocol/sdk": "0.6.0",
"exceljs": "^4.3.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^20.11.24",
"jest": "^30.1.3",
"nodemon": "^3.1.10",
"ts-jest": "^29.4.4",
"typescript": "^5.3.3"
}
}