
Security News
Lovable’s OJ Rewrites Vite’s Dev Server in Rust as AI Lowers the Cost of Forking Open Source
Lovable’s OJ rewrites Vite’s dev server in Rust, reducing memory use and preview times as AI lowers the cost of open source reimplementation.
@eigenart/agentshield-mcp
Advanced tools
MCP server for AgentShield — detect prompt injection, jailbreak, and social-engineering attempts in any text before your agent processes it.
Official MCP (Model Context Protocol) server for AgentShield — the runtime gateway and real-time classifier that detects prompt-injection, jailbreak, and social-engineering attempts in text while your agent is running, not in an offline audit pass.
Works with any MCP-compatible client: Claude Desktop, Cursor, Cline, Zed, Continue, and custom agents. Single-shot per request, p50 ~2.4 ms — designed to sit in the agent's hot path on every untrusted input.
Exposes one tool to the agent: classify_text. Call it on any untrusted text (user messages, retrieved documents, web scrapes, third-party tool outputs) and get back a per-request verdict.
{
"is_injection": true,
"confidence": 0.94,
"category": "jailbreak",
"latency_ms": 2.4,
"model": "agentshield-minilm-v2",
"request_id": "req_01HX…"
}
Classifier is hosted at api.agentshield.pro. No local GPU, no model download. Free tier: 100 classifications/day, no credit card.
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"agentshield": {
"command": "npx",
"args": ["-y", "@eigenart/agentshield-mcp"],
"env": {
"AGENTSHIELD_API_KEY": "ask_your_key_here"
}
}
}
}
Restart Claude Desktop. The classify_text tool will be available.
Same pattern — each client has its own MCP config path, but the command + env block are identical to the Claude Desktop snippet above. See your client's MCP docs for the exact file.
Free tier, no credit card: agentshield.pro/signup.
The tool description already tells the agent when to use this, but the core rule is:
Before your agent processes any external/untrusted text, call
classify_text. Ifis_injection=trueandconfidence ≥ 0.8, refuse to act and escalate.
Typical sources of untrusted text:
| Variable | Required | Default | Purpose |
|---|---|---|---|
AGENTSHIELD_API_KEY | yes | — | Your API key from agentshield.pro |
AGENTSHIELD_BASE_URL | no | https://api.agentshield.pro | Override for self-hosted gateway |
Public, reproducible: agentshield.pro/benchmark
check_output tool (output-side secret/PII leak detection, layer 3 of the Gateway)get_usage tool (rate-limit status for the current API key, so the agent can self-manage budget)File issues at github.com/dl-eigenart/agentshield-platform/issues.
pip install agentshield-sdk (import stays from agentshield import AgentShield)@eigenart/agentshieldAgentShield is a runtime classifier for live agent traffic. If you are looking for a one-shot pre-deployment OWASP-LLM-Top-10 scan of your own prompts, that is a different product category — use a static audit tool for that and pair it with AgentShield at runtime.
MIT © Eigenart Filmproduktion. See LICENSE.
FAQs
MCP server for AgentShield — detect prompt injection, jailbreak, and social-engineering attempts in any text before your agent processes it.
The npm package @eigenart/agentshield-mcp receives a total of 24 weekly downloads. As such, @eigenart/agentshield-mcp popularity was classified as not popular.
We found that @eigenart/agentshield-mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Security News
Lovable’s OJ rewrites Vite’s dev server in Rust, reducing memory use and preview times as AI lowers the cost of open source reimplementation.

Security News
It has been one year since Shai-Hulud made its first appearance on npm.

Research
/Security News
Operators behind PolinRider used a compromised GitHub account to plant malware in four development versions of a Packagist package with 700,000+ downloads.