op-injection-scanner

op-injection-scanner

An MCP server for prompt injection boundary enforcement that scans URL content using a tiered LLM model strategy.

Category
Visit Server

README

op-injection-scanner

An MCP server for prompt injection boundary enforcement. AI agents call scan_url(url) instead of fetching URLs directly. The server fetches the URL (with SSRF protection), strips HTML to plain text, and scans the content for prompt injection using a three-tier model escalation strategy (Haiku → Sonnet → Opus). Results are cached by URL and TTL bucket so repeated calls within the cache window incur no additional LLM cost.

Installation

git clone https://github.com/ethereum-optimism/op-injection-scanner
cd op-injection-scanner
bun install

Claude Code MCP config

Add to ~/.claude.json or your project's .claude/settings.json:

{
  "mcpServers": {
    "op-injection-scanner": {
      "command": "bun",
      "args": ["run", "/absolute/path/to/op-injection-scanner/src/server.ts"]
    }
  }
}

The server requires ANTHROPIC_API_KEY in the environment.

Usage

Agents call scan_url with a URL instead of fetching it directly:

scan_url({ url: "https://some-external-docs.example.com/page" })

Clean response — status 200, tool returns:

{
  "status": "clean",
  "content": "The stripped page text...",
  "url": "https://some-external-docs.example.com/page",
  "scanned_at": "2026-03-08T12:00:00.000Z",
  "model_used": "claude-haiku-4-5",
  "escalated": false
}

Blocked response — tool returns isError: true so the calling agent receives a tool error:

{
  "status": "blocked",
  "reason": "Content contains instructions attempting to override agent behaviour",
  "url": "https://malicious.example.com/page",
  "scanned_at": "2026-03-08T12:00:00.000Z",
  "model_used": "claude-haiku-4-5",
  "escalated": false
}

When the tool returns isError: true, the calling agent should not process the URL further.

Environment variables

Variable Default Purpose
ANTHROPIC_API_KEY (required) Anthropic API key — read automatically by the SDK
CACHE_MAX_ENTRIES 500 Maximum number of cached scan results
CACHE_TTL_SECONDS 3600 Cache entry lifetime in seconds (1 hour)
CONFIDENCE_THRESHOLD 0.8 Minimum confidence for a verdict — below this, escalate to next tier
FETCH_TIMEOUT_MS 10000 HTTP request timeout in milliseconds
MAX_RESPONSE_BYTES 2097152 Maximum response body size (2 MB)
MAX_REDIRECTS 5 Maximum number of HTTP redirects to follow
MAX_URL_LENGTH 2048 Maximum URL length in characters

Design decisions

Why MCP, not a hook

A Claude Code hook fires automatically on every tool call, but it cannot be selectively invoked or tested in isolation. An MCP server is explicit — agents opt in to scanning, the interface is testable, and it can be extended (new tools, new scan types) without touching hook infrastructure.

v1 scope

This version detects prompt injection only. Malicious intent detection (e.g. phishing, credential harvesting) is a future iteration. The clean verdict means "no injection attempt detected" — not "content is safe in all respects."

Tiered model strategy

  • Haiku — fast, cheap, handles the majority of clear-cut cases
  • Sonnet — escalated when Haiku returns uncertain or confidence < 0.8
  • Opus — final arbiter, called only when Sonnet also cannot reach a confident verdict; schema enforces a definitive clean or blocked verdict (no uncertain allowed); parse failure defaults to blocked

No auth or rate limiting

This is internal dev tooling. Network isolation is the access control. Auth and per-session rate limiting are noted as future work in the source.

DNS rebinding (known v1 limitation)

The SSRF guard resolves DNS once before the request and checks all returned IPs. A sophisticated attacker controlling a low-TTL DNS record could return a public IP on the initial check and re-resolve to a private IP at TCP connection time, bypassing the guard. Full mitigation requires a custom DNS-pinning HTTP client. This is acceptable for internal tooling but must be addressed before any public or shared deployment.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured