
Security News
Ruby's Bundler 4.0.18 Extends Cooldown to bundle lock and bundle cache
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.
agentvault-gateway
Advanced tools
MCP Proxy Gateway — Intercept, log, and secure all agent-to-MCP-server traffic
All agent traffic flows through us.
MCP Proxy that intercepts, logs, and secures agent-to-tool communication.
AI agents call external tools via MCP (Model Context Protocol), but you have zero visibility into what they're doing:
AgentVault Gateway sits between your agent and any MCP server as a transparent proxy:
Without Gateway:
Agent → MCP Server (GitHub, Slack, DB...)
❌ No logs. No visibility. No audit trail.
With Gateway:
Agent → [AgentVault Gateway] → MCP Server
↓
📊 Full action log
🔒 Security filtering
💰 Cost tracking
npx agentvault-gateway --target "npx -y @modelcontextprotocol/server-filesystem /tmp"
That's it. Your agent now connects to the Gateway instead of the MCP server directly. All traffic is logged to ./agentvault-logs/.
Add to your claude_desktop_config.json:
{
"mcpServers": {
"github-via-vault": {
"command": "npx",
"args": [
"agentvault-gateway",
"--target", "npx -y @modelcontextprotocol/server-github"
]
}
}
}
| Feature | Description |
|---|---|
| 📊 Audit Log | Every tool call recorded with timestamps, inputs, outputs, latency |
| 🔒 Security Filter | Block dangerous operations (DELETE, DROP, rm -rf, etc.) |
| 🚦 Rate Limiting | Prevent runaway agents from flooding your tools |
| 📡 Telemetry | Optional cloud sync for cross-session analytics |
| 🧩 Zero Config | Works with any MCP server. No code changes needed |
agentvault-gateway \
--target "npx -y @modelcontextprotocol/server-github" \
--log-dir ./my-logs \
--no-telemetry
{
"target": "npx -y @modelcontextprotocol/server-github",
"security": {
"block_patterns": ["DELETE", "DROP", "TRUNCATE", "rm -rf"],
"max_requests_per_minute": 60
},
"telemetry": {
"enabled": true,
"endpoint": "https://api.agentvault.dev/telemetry"
},
"log": {
"storage": "local",
"path": "./agentvault-logs",
"format": "jsonl"
}
}
Each tool call generates a JSONL entry:
{
"id": "av_1714500000000_abc123",
"timestamp": "2026-04-30T15:00:00.000Z",
"event_type": "tool_call",
"tool_name": "read_file",
"input_summary": { "path": "/src/index.js" },
"output_size_bytes": 2048,
"latency_ms": 142,
"blocked": false,
"source": "cli"
}
import { AgentVaultGateway } from 'agentvault-gateway';
const gateway = new AgentVaultGateway({
target: 'npx -y @modelcontextprotocol/server-github',
logDir: './logs',
security: {
blockPatterns: ['DELETE', 'DROP'],
maxRequestsPerMinute: 30
}
});
await gateway.start();
--no-telemetryBuilt by AgentVault — Making AI agents observable, secure, and accountable.
FAQs
MCP Proxy Gateway — Intercept, log, and secure all agent-to-MCP-server traffic
We found that agentvault-gateway 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.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.

Company News
Socket is now in the AWS Security Hub Extended plan. Adopt it through AWS, apply committed spend, and block malicious open source packages.