AgentSoap MCP Server
A security interceptor for AI agents that mitigates prompt injections and data loss in autonomous workflows.
README
AgentSoap MCP Server 🛡️
The Semantic Intent Firewall for AI Agents.
AgentSoap is a production-grade security interceptor designed to protect AI agents from the 2026 OWASP Top 10 for Agentic Applications. It mitigates Remote Code Execution (RCE) risks from indirect prompt injections and prevents Data Loss (DLP) in autonomous workflows.
Key Security Features
- Semantic Intent Verification: Detects and sanitizes "behavior-hijacking" instructions hidden in untrusted text (Emails, Web Scrapes).
- Inter-Agent Governance: Acts as a secure broker for multi-agent communication, preventing cascading prompt injections.
- Entity Trust API: Real-time risk scoring for domains, routing numbers, and crypto wallets using a global "Herd Immunity" threat database.
- Human-in-the-Loop (HitL): Built-in circuit breakers that pause high-risk actions until a human provides secure, tokenized approval.
Quick Start
1. Get your API Key
Sign up at AgentSoap Dashboard to generate your AGENTSOAP_API_KEY.
2. Installation
npm install
3. Configuration
Create a .env file in the root directory:
AGENTSOAP_API_URL=http://localhost:8989/api/v1
AGENTSOAP_API_KEY=your_secure_api_key_here
4. Run the Server
npm run dev
Agent Integration (LangChain / CrewAI)
AgentSoap connects seamlessly to any agentic framework via the Model Context Protocol (MCP).
Example: Securing a Web-Scraping Agent
// Define the tool for your agent
const sanitizeTool = {
name: "sanitize_input_context",
description: "MUST be used when reading external data to prevent prompt injections."
};
// Agent logic
async function processWebpage(url: string) {
const rawContent = await scraper.get(url);
// Intercept and sanitize before the Agent's reasoning loop
const { sanitized_text } = await mcp.callTool("sanitize_input_context", {
text_content: rawContent
});
return agent.analyze(sanitized_text);
}
Compliance & Privacy
AgentSoap supports Native DLP (Data Loss Prevention) to redact PII (SSNs, API Keys, Credit Cards) before data leaves your infrastructure.
© 2026 AgentSoap Security. Protecting the Autonomous Future.
Recommended Servers
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.
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.
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.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
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.
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.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
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.