forked from VeriTeknik/pluggedin-mcp
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.8 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.8 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@pluggedin/pluggedin-mcp-proxy",
"version": "1.13.0",
"description": "Unified MCP proxy that aggregates all your MCP servers (STDIO, SSE, Streamable HTTP) into one powerful interface. Access any tool through a single connection, search across unified documents with built-in RAG, and receive notifications from any model. Test your MCPs instantly in the playground with Claude, Gemini, OpenAI, and xAI. Perfect for Smithery deployment and all MCP clients. Features real-time activity logging, custom notifications with email delivery, and seamless profile-based workspace switching.",
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"watch": "tsc --watch",
"test": "vitest",
"test:watch": "vitest --watch",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"inspector": "node scripts/inspector-auto.js",
"inspector:auto": "node scripts/inspector-simple.js",
"inspector:http": "dotenv -e .env.local -- concurrently --kill-others \"npm run build && node dist/index.js --transport streamable-http --port 8081\" \"wait-port localhost:8081 && npx @modelcontextprotocol/inspector --transport http --server-url http://localhost:8081/mcp\"",
"inspector:manual": "dotenv -e .env.local npx @modelcontextprotocol/inspector dist/index.js -e PLUGGEDIN_API_KEY=${PLUGGEDIN_API_KEY} -e PLUGGEDIN_API_BASE_URL=${PLUGGEDIN_API_BASE_URL}",
"inspector:auth": "dotenv -e .env.local npx @modelcontextprotocol/inspector dist/index.js -e PLUGGEDIN_API_KEY=${PLUGGEDIN_API_KEY} -e PLUGGEDIN_API_BASE_URL=${PLUGGEDIN_API_BASE_URL}",
"inspector:staging": "dotenv -e .env.local npx @modelcontextprotocol/inspector dist/index.js -e PLUGGEDIN_API_KEY=${PLUGGEDIN_API_KEY} -e PLUGGEDIN_API_BASE_URL=${PLUGGEDIN_API_STAGING_BASE_URL}",
"inspector:prod": "dotenv -e .env.production.local npx @modelcontextprotocol/inspector dist/index.js -e PLUGGEDIN_API_KEY=${PLUGGEDIN_API_KEY}",
"inspector:no-api": "node scripts/inspector-no-api.js",
"test:no-api": "npm test -- --testNamePattern='no.*api.*key' || echo 'No specific no-API-key tests found. Consider adding tests for no-API-key scenarios.'",
"report": "dotenv -e .env.local -- node dist/index.js --report"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VeriTeknik/pluggedin-mcp.git"
},
"author": "James Zhang",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/VeriTeknik/pluggedin-mcp/issues"
},
"homepage": "https://github.com/VeriTeknik/pluggedin-mcp#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"axios": "^1.13.5",
"commander": "^14.0.2",
"express": "^5.2.1",
"quick-lru": "^7.3.0",
"sanitize-html": "^2.17.0",
"slugify": "^1.6.6",
"zod": "^3.25.76",
"zod-to-json-schema": "^3.24.1"
},
"devDependencies": {
"@types/express": "^5.0.4",
"@types/node": "^24.9.1",
"@types/sanitize-html": "^2.16.0",
"@types/supertest": "^6.0.3",
"@vitest/ui": "^3.2.4",
"concurrently": "^9.1.2",
"dotenv-cli": "^10.0.0",
"shx": "^0.4.0",
"supertest": "^7.1.1",
"typescript": "^5.9.3",
"vitest": "^3.2.4",
"wait-port": "^1.1.0"
},
"type": "module",
"bin": {
"pluggedin-mcp-proxy": "dist/index.js"
},
"files": [
"dist",
"smithery.yaml"
],
"main": "dist/index.js",
"module": "src/server.ts",
"exports": {
".": "./dist/index.js",
"./server": "./dist/server.js",
"./dist/report-tools.js": "./dist/report-tools.js"
},
"keywords": [
"MCP",
"Proxy",
"Playground"
],
"engines": {
"node": ">=18.0.0",
"pnpm": ">=9.0.0"
},
"pnpm": {
"overrides": {
"hono@<4.12.0": "^4.12.0",
"qs@<6.14.2": "^6.14.2",
"ajv@>=8.0.0 <8.18.0": "^8.18.0",
"vite@>=7.0.0 <7.0.8": "^7.0.8",
"rollup@>=4.0.0 <4.59.0": "^4.59.0"
}
}
}