decoy-mcp 0.4.0 → 0.4.1
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/bin/cli.mjs +2 -2
- package/package.json +3 -3
- package/server/server.mjs +1 -1
package/bin/cli.mjs
CHANGED
|
@@ -8,8 +8,8 @@ import { fileURLToPath } from "node:url";
|
|
|
8
8
|
import { spawn } from "node:child_process";
|
|
9
9
|
|
|
10
10
|
const __dirname = dirname(fileURLToPath(import.meta.url));
|
|
11
|
-
const API_URL = "https://decoy.run/api/signup";
|
|
12
|
-
const DECOY_URL = "https://decoy.run";
|
|
11
|
+
const API_URL = "https://app.decoy.run/api/signup";
|
|
12
|
+
const DECOY_URL = "https://app.decoy.run";
|
|
13
13
|
|
|
14
14
|
const ORANGE = "\x1b[38;5;208m";
|
|
15
15
|
const GREEN = "\x1b[32m";
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "decoy-mcp",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "Security tripwires for AI agents. Detect prompt injection attacks on your MCP tools.",
|
|
5
5
|
"bin": {
|
|
6
|
-
"decoy-mcp": "
|
|
6
|
+
"decoy-mcp": "bin/cli.mjs"
|
|
7
7
|
},
|
|
8
8
|
"type": "module",
|
|
9
9
|
"files": [
|
|
@@ -27,6 +27,6 @@
|
|
|
27
27
|
"homepage": "https://decoy.run",
|
|
28
28
|
"repository": {
|
|
29
29
|
"type": "git",
|
|
30
|
-
"url": "https://github.com/decoy-run/decoy-mcp"
|
|
30
|
+
"url": "git+https://github.com/decoy-run/decoy-mcp.git"
|
|
31
31
|
}
|
|
32
32
|
}
|
package/server/server.mjs
CHANGED