@clampd/mcp-proxy 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,38 @@
1
+ {
2
+ "gateway": "http://ag-gateway:8080",
3
+ "apiKey": "ag_test_acme_2026",
4
+ "secret": "",
5
+ "dashboardPort": 3000,
6
+ "dryRun": false,
7
+ "verbose": false,
8
+ "agents": [
9
+ {
10
+ "name": "HR Analyst",
11
+ "agentId": "b0000001-0002-0000-0000-000000000001",
12
+ "port": 3003,
13
+ "upstream": "npx -y @modelcontextprotocol/server-filesystem /data",
14
+ "color": "#3b82f6",
15
+ "scanInput": true,
16
+ "scanOutput": true,
17
+ "demoPanel": true
18
+ },
19
+ {
20
+ "name": "DevOps Bot",
21
+ "agentId": "b0000001-0003-0000-0000-000000000001",
22
+ "port": 3004,
23
+ "upstream": "npx -y @modelcontextprotocol/server-filesystem /tmp",
24
+ "color": "#22c55e",
25
+ "scanInput": true,
26
+ "scanOutput": true
27
+ },
28
+ {
29
+ "name": "DBA Bot",
30
+ "agentId": "b0000001-0004-0000-0000-000000000001",
31
+ "port": 3005,
32
+ "upstream": "npx -y @modelcontextprotocol/server-postgres",
33
+ "color": "#f59e0b",
34
+ "scanInput": true,
35
+ "scanOutput": true
36
+ }
37
+ ]
38
+ }
package/package.json ADDED
@@ -0,0 +1,44 @@
1
+ {
2
+ "name": "@clampd/mcp-proxy",
3
+ "version": "0.2.0",
4
+ "description": "Standalone MCP proxy that wraps any MCP server with Clampd's 9-stage security pipeline",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "bin": {
8
+ "clampd-mcp-proxy": "dist/index.js"
9
+ },
10
+ "scripts": {
11
+ "build": "tsc",
12
+ "start": "node dist/index.js",
13
+ "dev": "tsx src/index.ts",
14
+ "clean": "rm -rf dist",
15
+ "typecheck": "tsc --noEmit"
16
+ },
17
+ "license": "BUSL-1.1",
18
+ "homepage": "https://clampd.dev",
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "https://github.com/clampd/clampd"
22
+ },
23
+ "author": "Clampd <mehul.soni89@gmail.com>",
24
+ "keywords": [
25
+ "mcp",
26
+ "model-context-protocol",
27
+ "ai",
28
+ "agents",
29
+ "security",
30
+ "proxy",
31
+ "clampd"
32
+ ],
33
+ "engines": {
34
+ "node": ">=18.0.0"
35
+ },
36
+ "dependencies": {
37
+ "@modelcontextprotocol/sdk": "^1.0.0"
38
+ },
39
+ "devDependencies": {
40
+ "@types/node": "^20.14.0",
41
+ "tsx": "^4.19.0",
42
+ "typescript": "^5.9.3"
43
+ }
44
+ }