protect-mcp 0.4.4 → 0.4.5

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.
package/dist/index.mjs CHANGED
@@ -5,7 +5,7 @@ import {
5
5
  } from "./chunk-VIA2B65K.mjs";
6
6
  import {
7
7
  createSandboxServer
8
- } from "./chunk-U76JZVH6.mjs";
8
+ } from "./chunk-SU2FZH7U.mjs";
9
9
  import {
10
10
  collectSignedReceipts,
11
11
  createAuditBundle
@@ -34,6 +34,7 @@ import {
34
34
  formatReportMarkdown,
35
35
  generateReport
36
36
  } from "./chunk-JQDVKZBN.mjs";
37
+ import "./chunk-PQJP2ZCI.mjs";
37
38
 
38
39
  // src/manifest.ts
39
40
  function isAgentId(s) {
@@ -2,6 +2,7 @@ import {
2
2
  formatReportMarkdown,
3
3
  generateReport
4
4
  } from "./chunk-JQDVKZBN.mjs";
5
+ import "./chunk-PQJP2ZCI.mjs";
5
6
  export {
6
7
  formatReportMarkdown,
7
8
  generateReport
@@ -36,6 +36,7 @@ import {
36
36
  wrapConstructorWithOpts,
37
37
  wrapXOFConstructorWithOpts
38
38
  } from "./chunk-D733KAPG.mjs";
39
+ import "./chunk-PQJP2ZCI.mjs";
39
40
  export {
40
41
  Hash,
41
42
  abytes,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "protect-mcp",
3
- "version": "0.4.4",
3
+ "version": "0.4.5",
4
4
  "mcpName": "io.github.tomjwxf/protect-mcp",
5
5
  "description": "Security gateway for MCP servers. Shadow-mode logs, per-tool policies, optional local Ed25519-signed receipts. Programmatic hooks for trust tiers, credential config, and external policy engines.",
6
6
  "main": "dist/index.js",
@@ -63,6 +63,7 @@
63
63
  },
64
64
  "optionalDependencies": {
65
65
  "@cedar-policy/cedar-wasm": "^4.9.1",
66
+ "@modelcontextprotocol/sdk": "^1.29.0",
66
67
  "@noble/curves": "^1.8.0",
67
68
  "@noble/hashes": "^1.7.0"
68
69
  },
@@ -1,144 +0,0 @@
1
- // src/demo-server.ts
2
- import { createInterface } from "readline";
3
- var TOOLS = [
4
- {
5
- name: "read_file",
6
- description: "Read the contents of a file",
7
- inputSchema: {
8
- type: "object",
9
- properties: { path: { type: "string", description: "File path to read" } },
10
- required: ["path"]
11
- }
12
- },
13
- {
14
- name: "write_file",
15
- description: "Write content to a file",
16
- inputSchema: {
17
- type: "object",
18
- properties: {
19
- path: { type: "string", description: "File path to write" },
20
- content: { type: "string", description: "Content to write" }
21
- },
22
- required: ["path", "content"]
23
- }
24
- },
25
- {
26
- name: "delete_file",
27
- description: "Delete a file from the filesystem",
28
- inputSchema: {
29
- type: "object",
30
- properties: { path: { type: "string", description: "File path to delete" } },
31
- required: ["path"]
32
- }
33
- },
34
- {
35
- name: "web_search",
36
- description: "Search the web for information",
37
- inputSchema: {
38
- type: "object",
39
- properties: { query: { type: "string", description: "Search query" } },
40
- required: ["query"]
41
- }
42
- },
43
- {
44
- name: "deploy",
45
- description: "Deploy the application to production",
46
- inputSchema: {
47
- type: "object",
48
- properties: {
49
- environment: { type: "string", description: "Target environment", enum: ["staging", "production"] },
50
- reason: { type: "string", description: "Deployment reason" }
51
- },
52
- required: ["environment"]
53
- }
54
- }
55
- ];
56
- function handleRequest(request) {
57
- if (request.method === "initialize") {
58
- return JSON.stringify({
59
- jsonrpc: "2.0",
60
- id: request.id,
61
- result: {
62
- protocolVersion: "2024-11-05",
63
- serverInfo: { name: "protect-mcp-demo", version: "0.2.0" },
64
- capabilities: { tools: {} }
65
- }
66
- });
67
- }
68
- if (request.method === "notifications/initialized") {
69
- return "";
70
- }
71
- if (request.method === "tools/list") {
72
- return JSON.stringify({
73
- jsonrpc: "2.0",
74
- id: request.id,
75
- result: { tools: TOOLS }
76
- });
77
- }
78
- if (request.method === "tools/call") {
79
- const toolName = request.params?.name || "unknown";
80
- const args = request.params?.arguments || {};
81
- let resultText;
82
- switch (toolName) {
83
- case "read_file":
84
- resultText = `[demo] Read file: ${args.path || "/example.txt"}
85
- Contents: Hello from protect-mcp demo server!`;
86
- break;
87
- case "write_file":
88
- resultText = `[demo] Wrote ${String(args.content || "").length} bytes to ${args.path || "/example.txt"}`;
89
- break;
90
- case "delete_file":
91
- resultText = `[demo] Deleted file: ${args.path || "/example.txt"}`;
92
- break;
93
- case "web_search":
94
- resultText = `[demo] Search results for "${args.query || "test"}":
95
- 1. Example result \u2014 scopeblind.com
96
- 2. MCP security \u2014 modelcontextprotocol.io`;
97
- break;
98
- case "deploy":
99
- resultText = `[demo] Deployed to ${args.environment || "staging"}${args.reason ? ` (reason: ${args.reason})` : ""}`;
100
- break;
101
- default:
102
- resultText = `[demo] Unknown tool: ${toolName}`;
103
- }
104
- return JSON.stringify({
105
- jsonrpc: "2.0",
106
- id: request.id,
107
- result: {
108
- content: [{ type: "text", text: resultText }]
109
- }
110
- });
111
- }
112
- if (request.id !== void 0) {
113
- return JSON.stringify({
114
- jsonrpc: "2.0",
115
- id: request.id,
116
- error: { code: -32601, message: `Method not found: ${request.method}` }
117
- });
118
- }
119
- return "";
120
- }
121
- var rl = createInterface({ input: process.stdin, crlfDelay: Infinity });
122
- rl.on("line", (line) => {
123
- const trimmed = line.trim();
124
- if (!trimmed) return;
125
- try {
126
- const request = JSON.parse(trimmed);
127
- const response = handleRequest(request);
128
- if (response) {
129
- process.stdout.write(response + "\n");
130
- }
131
- } catch {
132
- }
133
- });
134
- process.stderr.write("[DEMO_SERVER] protect-mcp demo server started \u2014 5 tools registered\n");
135
- function createSandboxServer() {
136
- return {
137
- tools: TOOLS,
138
- handleRequest
139
- };
140
- }
141
-
142
- export {
143
- createSandboxServer
144
- };