Agentvault Gateway
MCP Proxy Gateway β Intercept, log, and secure all agent-to-MCP-server traffic
Ask AI about Agentvault Gateway
Powered by Claude Β· Grounded in docs
I know everything about Agentvault Gateway. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Reviews
Documentation
π΄ββ οΈ AgentVault
The essential toolkit for AI agents β 9 tools in one install, zero API keys.
π Website Β· π¦ npm Β· π JSR Β· π Ecosystem Report
β‘ 30-Second Start
npx agentvault-tools
That's it. Your agent now has web search, persistent memory, calculator, and more β no API keys, no config, no cost.
Claude Desktop
{
"mcpServers": {
"agentvault": {
"command": "npx",
"args": ["-y", "agentvault-tools"]
}
}
}
Cursor / Windsurf
{
"mcpServers": {
"agentvault": {
"command": "npx",
"args": ["-y", "agentvault-tools"]
}
}
}
π οΈ The Starter Kit β 9 Tools in One Package
agentvault-tools is the first package every AI agent should install:
| Category | Tool | What It Does |
|---|---|---|
| π Web | web_search | DuckDuckGo search β no API key required |
| π Web | web_fetch | URL β clean text extraction |
| π§ Memory | save_memory | Persist text with tags & importance levels |
| π§ Memory | search_memory | Full-text search (SQLite FTS5) |
| π§ Memory | list_memories | Browse & filter by tag |
| π§ Memory | delete_memory | Remove entries |
| π§ Memory | memory_stats | Usage statistics |
| π§ Utility | datetime | Timezone conversion |
| π§ Utility | calc | Math expression evaluator |
Memory is 100% local β your data stays on your machine. SQLite + FTS5, zero cloud dependency.
π¦ All 7 Packages
| Package | Description | Install |
|---|---|---|
agentvault-tools | MCP Starter Kit β 9 tools, zero config | npx agentvault-tools |
agentvault-memory | Local-first persistent memory (standalone) | npx agentvault-memory |
agentvault-gateway | MCP proxy with audit logging & telemetry | npx agentvault-gateway |
agentvault-score | Quality & security scoring (A+ to F) | npx agentvault-score scan <target> |
agentvault-guard | Tool poisoning detection & injection prevention | npm i agentvault-guard |
agentvault-retry | Resilient calls β backoff, timeout, fallback | npm i agentvault-retry |
agentvault-cache | Smart result caching β reduce latency & cost | npm i agentvault-cache |
π MCP Ecosystem Health
We patrol the MCP ecosystem daily with automated agents. Key findings:
- 57% of MCP servers on npm fail to connect (26 of 46 tested)
- All failures produce the same error:
Connection closed - Many packages are published but broken or require undocumented setup
- 21 servers successfully scored, average quality: 89/100
- 295 tools catalogued across operational servers
π Full Ecosystem Report β
Top Scored Servers
| Rank | Server | Score | Tools |
|---|---|---|---|
| π₯ | mcp-server-sqlite | 98/100 | 10 |
| π₯ | @mapbox/mcp-server | 97/100 | 5 |
| π₯ | mcp-server-kubernetes | 96/100 | 23 |
| 4 | server-everything | 94/100 | 13 |
| 5 | server-puppeteer | 91/100 | 7 |
π Security
Tool Poisoning Detection
import { createGuard } from 'agentvault-guard';
const guard = createGuard({ mode: 'strict' });
const result = guard.check(toolName, args);
if (!result.allowed) {
console.error('π΄ Blocked:', result.reason);
}
Resilient Calls
import { withRetry } from 'agentvault-retry';
const result = await withRetry(() => callTool('search', { query: 'test' }), {
maxRetries: 3,
timeoutMs: 5000,
});
Cache Results
import { createCache } from 'agentvault-cache';
const cache = createCache({ ttlMs: 60000 });
const result = await cache.wrap('search:test', () => callTool('search', { query: 'test' }));
π€ Framework Integration
CrewAI
from crewai import Agent
from crewai.mcp import MCPServerStdio
agent = Agent(
role="Research Analyst",
goal="Gather data securely via audited MCP tools",
mcps=[
MCPServerStdio(
command="npx",
args=["-y", "agentvault-tools"],
)
]
)
Audited Proxy (for any server)
{
"mcpServers": {
"github-audited": {
"command": "npx",
"args": ["-y", "agentvault-gateway", "--target", "npx -y @modelcontextprotocol/server-github"]
}
}
}
Architecture
βββββββββββββββ ββββββββββββββββ ββββββββββββββββ
β AI Agent ββββββΆβ Gateway ββββββΆβ MCP Server β
β (Claude, β β (Proxy + β β (Any npm β
β Cursor, β β Telemetry) β β MCP pkg) β
β etc.) β ββββββββ¬ββββββββ ββββββββββββββββ
ββββββββββββββββ β
βΌ
ββββββββββββββββ ββββββββββββββββ
β Telemetry β β AgentScore β
β Data Lake β β Scan Data β
ββββββββ¬ββββββββ ββββββββ¬ββββββββ
β β
βΌ βΌ
βββββββββββββββββββββββββββββββ
β Intelligence Engine β
β Quality Reports, Alerts, β
β Trust Scores, Rankings β
βββββββββββββββββββββββββββββββ
License
MIT β Built by AgentVault π΄ββ οΈ
