-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.32 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.32 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
{
"name": "@devproxy/mcp",
"version": "0.3.1",
"mcpName": "io.github.dev-proxy-tools/mcp",
"description": "MCP server for Dev Proxy that enables AI assistants to interact with Dev Proxy.",
"main": "dist/index.js",
"type": "module",
"bin": {
"devproxy-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc -p .",
"watch": "tsc -w -p .",
"clean": "rimraf dist",
"start": "node dist/index.js",
"inspect": "npx -y @modelcontextprotocol/inspector node dist/index.js"
},
"keywords": [
"dev-proxy",
"mcp",
"model-context-protocol",
"ai-assistant",
"api-simulator"
],
"author": "Dev Proxy",
"maintainers": [
{
"name": "Waldek Mastykarz",
"email": "waldek@mastykarz.nl",
"web": "https://blog.mastykarz.nl"
},
{
"name": "Garry Trinder",
"email": "garry.trinder@live.com",
"web": "https://garrytrinder.github.io/"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/dev-proxy-tools/mcp.git"
},
"engines": {
"node": ">=20.0.0"
},
"license": "MIT",
"files": [
"dist",
"LICENSE",
"README.md",
"server.json"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1"
},
"devDependencies": {
"@types/node": "^24.12.0",
"rimraf": "^6.1.3",
"typescript": "^5.9.3"
}
}