-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 876 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 876 Bytes
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
{
"name": "@requestly/mcp",
"version": "1.0.3",
"main": "build/index.js",
"type": "module",
"bin": {
"@requestly/mcp": "./build/index.js"
},
"scripts": {
"build": "esbuild src/index.ts --bundle --minify --platform=node --format=esm --outfile=build/index.js && chmod 755 build/index.js",
"start": "node build/index.js",
"test": "vitest run"
},
"keywords": [
"requestly",
"mcp",
"server",
"rules",
"groups"
],
"author": "Requestly <contact@requestly.io>",
"license": "MIT",
"packageManager": "pnpm@9.15.9",
"description": "Requestly MCP server for rule and group management via stdio.",
"devDependencies": {
"@types/node": "^24.1.0",
"esbuild": "^0.25.8",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.16.0",
"zod": "^3.25.76"
}
}