-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.27 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.27 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
{
"name": "@terryliyongjie/api2mcptools",
"version": "1.0.5",
"description": "apis to mcp tools",
"private": false,
"author": "JayLi52",
"type": "module",
"bin": {
"mcp-tools": "./build/index.js",
"setup": "./build/setup-claude-server.js"
},
"files": [
"build"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"start": "node build/index.js",
"dev": "CONFIG_JSON_PATH=./tools.json tsx src/index.ts",
"sse": "CONFIG_JSON_PATH=./tools.json tsx src/sse-server.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.6.0",
"@types/express": "^5.0.1",
"axios": "^1.8.4",
"express": "^5.1.0"
},
"devDependencies": {
"@types/node": "^20.17.28",
"shx": "^0.3.4",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/JayLi52/api2mcptools.git"
},
"keywords": [
"apis to mcp tools",
"mcp",
"tools",
"apis",
"json apis to mcp tools",
"api mcp tools"
],
"bugs": {
"url": "https://github.com/JayLi52/api2mcptools/issues"
},
"homepage": "https://github.com/JayLi52/api2mcptools#readme"
}