Skip to content

Commit 13031af

Browse files
committed
v0.2.1: patch release for MCP Registry verification
- Add server.json for official MCP Registry (mcp-publisher) - Remove smithery.yaml (Smithery requires hosted HTTP server) - Add .mcpregistry_* to .gitignore - Bump version to 0.2.1 Made-with: Cursor
1 parent e74d672 commit 13031af

5 files changed

Lines changed: 26 additions & 13 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,4 @@ bench/results/
2525
.vscode/
2626
*.iml
2727
.coverage
28+
.mcpregistry_*

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "agent-immune"
7-
version = "0.2.0"
7+
version = "0.2.1"
88
description = "Adaptive threat intelligence for AI agent security — semantic memory, multi-turn escalation, output scanning, rate limiting, and prompt hardening."
99
readme = "README.md"
1010
license = { text = "Apache-2.0" }

server.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3+
"name": "io.github.denial-web/agent-immune",
4+
"description": "AI agent security: prompt injection detection, semantic memory, output scanning, prompt hardening",
5+
"repository": {
6+
"url": "https://github.com/denial-web/agent-immune",
7+
"source": "github"
8+
},
9+
"version": "0.2.1",
10+
"packages": [
11+
{
12+
"registryType": "pypi",
13+
"identifier": "agent-immune",
14+
"version": "0.2.1",
15+
"transport": {
16+
"type": "stdio"
17+
},
18+
"runtime": "python",
19+
"runtimeArgs": ["-m", "agent_immune", "serve", "--transport", "stdio"],
20+
"environmentVariables": []
21+
}
22+
]
23+
}

smithery.yaml

Lines changed: 0 additions & 11 deletions
This file was deleted.

src/agent_immune/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from agent_immune.observability import MetricsCollector
99
from agent_immune.rate_limiter import CircuitBreaker
1010

11-
__version__ = "0.2.0"
11+
__version__ = "0.2.1"
1212

1313
__all__ = [
1414
"AdaptiveImmuneSystem",

0 commit comments

Comments
 (0)