ledd-mcp-audit-server 2.0.1 → 2.0.2
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/CHANGELOG.md +9 -0
- package/mcp/server.json +2 -2
- package/package.json +3 -1
- package/server.json +36 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2.0.2 (2026-03-19)
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
- Added official MCP Registry metadata with `mcpName` and root `server.json`.
|
|
7
|
+
- Added registry-ready environment variable metadata for `AGENT_SECURITY_API_KEY` and optional `AGENT_SECURITY_BASE_URL`.
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
- Published package now includes `server.json` for registry/discovery tooling.
|
|
11
|
+
|
|
3
12
|
## 2.0.1 (2026-03-19)
|
|
4
13
|
|
|
5
14
|
### Added
|
package/mcp/server.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-audit-server",
|
|
3
|
-
"version": "2.0.
|
|
4
|
-
"description": "Audit and remediate AI agent and MCP server security vulnerabilities, prompt injection risk, and data exfiltration paths.",
|
|
3
|
+
"version": "2.0.2",
|
|
4
|
+
"description": "Audit and remediate AI agent and MCP server security vulnerabilities, prompt injection risk, and data exfiltration paths through a hosted audit backend.",
|
|
5
5
|
"command": "node",
|
|
6
6
|
"args": [
|
|
7
7
|
"mcp/index.js"
|
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ledd-mcp-audit-server",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2",
|
|
4
4
|
"description": "MCP server interface for AI agent and MCP security auditing — config analysis, prompt injection testing, tool probing, data flow tracing",
|
|
5
|
+
"mcpName": "io.github.joepangallo/mcp-audit-server",
|
|
5
6
|
"type": "commonjs",
|
|
6
7
|
"main": "index.js",
|
|
7
8
|
"bin": {
|
|
@@ -35,6 +36,7 @@
|
|
|
35
36
|
"cli.js",
|
|
36
37
|
"CHANGELOG.md",
|
|
37
38
|
"MIGRATION.md",
|
|
39
|
+
"server.json",
|
|
38
40
|
"mcp/",
|
|
39
41
|
"README.md",
|
|
40
42
|
"LICENSE"
|
package/server.json
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
|
+
"name": "io.github.joepangallo/mcp-audit-server",
|
|
4
|
+
"description": "MCP server interface for AI agent and MCP security auditing — config analysis, prompt injection testing, tool probing, data flow tracing",
|
|
5
|
+
"repository": {
|
|
6
|
+
"url": "https://github.com/joepangallo/mcp-audit-server",
|
|
7
|
+
"source": "github"
|
|
8
|
+
},
|
|
9
|
+
"version": "2.0.2",
|
|
10
|
+
"packages": [
|
|
11
|
+
{
|
|
12
|
+
"registryType": "npm",
|
|
13
|
+
"identifier": "ledd-mcp-audit-server",
|
|
14
|
+
"version": "2.0.2",
|
|
15
|
+
"transport": {
|
|
16
|
+
"type": "stdio"
|
|
17
|
+
},
|
|
18
|
+
"environmentVariables": [
|
|
19
|
+
{
|
|
20
|
+
"description": "API key for the managed hosted audit backend",
|
|
21
|
+
"isRequired": true,
|
|
22
|
+
"format": "string",
|
|
23
|
+
"isSecret": true,
|
|
24
|
+
"name": "AGENT_SECURITY_API_KEY"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"description": "Optional HTTPS API origin for self-hosted or private deployments",
|
|
28
|
+
"isRequired": false,
|
|
29
|
+
"format": "string",
|
|
30
|
+
"isSecret": false,
|
|
31
|
+
"name": "AGENT_SECURITY_BASE_URL"
|
|
32
|
+
}
|
|
33
|
+
]
|
|
34
|
+
}
|
|
35
|
+
]
|
|
36
|
+
}
|