-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.06 KB
/
package.json
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
{
"name": "dkmaker-mcp-rest-api",
"version": "0.2.0",
"description": "A generic REST API tester for testing HTTP endpoints",
"license": "MIT",
"type": "module",
"bin": {
"dkmaker-mcp-rest-api": "./build/index.js"
},
"files": [
"build",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"axios": "^1.7.9"
},
"devDependencies": {
"@types/node": "^20.11.24",
"typescript": "^5.3.3"
},
"keywords": [
"mcp",
"rest",
"api",
"http",
"testing",
"cline",
"development",
"typescript"
],
"author": "zenturacp",
"repository": {
"type": "git",
"url": "git+https://github.com/dkmaker/mcp-rest-api.git"
},
"bugs": {
"url": "https://github.com/dkmaker/mcp-rest-api/issues"
},
"homepage": "https://github.com/dkmaker/mcp-rest-api#readme",
"engines": {
"node": ">=18.0.0"
}
}