
Product
Socket Now Protects the Firefox Extension Ecosystem
Socket is bringing experimental protection to Firefox, scanning 97,000+ extensions in Mozilla's official directory for malware and risky updates.
vape-mcp-server
Advanced tools
V.A.P.E. (Virtual Ape Private Eye) — an autonomous on-chain security detective for Base, exposed over the standard Model Context Protocol (MCP).
mcp_servers/vape_mcp.py
V.A.P.E. now speaks the industry-standard Model Context Protocol (MCP
2024-11-05), so any MCP host — Claude, Cursor, VS Code Copilot, or a custom
agent — can discover and call V.A.P.E.'s real capabilities with no bespoke glue.
pip install — keeps VAPE compute-free
and Termux/Android-friendly (stdio is the local transport).agents.investigate, agents.token_scan, agents.data_fetchers,
agents.defillama, the Memory retriever + SQLite index) directly in-process.
The one exception is wallet_trace, which shells out to the real
skillforge/tools/recon/wallet_trace.sh (Alchemy-backed, live-verified —
see PR #145) rather than re-implementing it. No stubs, no fabricated numbers.tools/list)| Tool | What it does |
|---|---|
investigate_token | Deep on-chain investigation (GoPlus + DexScreener + Base RPC + hack feed) → 0-100 score + PROCEED/CAUTION/REJECT verdict |
scan_token_safety | Fast honeypot/tax/owner-power + liquidity scan → verdict |
recent_hacks | Recent DeFi exploits (DeFiLlama): dated, $ lost, chain, technique |
fear_greed | Current crypto Fear & Greed index |
memory_search | Query Central Memory (SQLite-indexed) by text/category/days |
memory_stats | Counts by category, severity, high-confidence |
research_search | Web search via the best available provider (Tavily/Brave, keyless fallback) |
research_scrape | Scrape a page to clean text/markdown (Firecrawl/BrightData/Apify, keyless fallback) |
mcp_servers | List the MCP servers VAPE can host and their live/key-gated/needs-runtime status |
wallet_trace | Wallet/address forensics via Alchemy's Transfers API (Base/Eth/Arb/Op) |
contract_source | Contract verification status + source/ABI via Etherscan V2 |
global_market | Global crypto market snapshot: BTC/ETH dominance, 24h mcap change |
defillama_token_intel | A token's DefiLlama picture: price, first-seen age, fees/unlocks/treasury |
defillama_chain_overview | A chain's headline TVL + rank among all tracked chains |
defillama_protocols_on_chain | Top protocols on a chain by TVL, with category and 24h/7d change |
defillama_yield_pools | Yield pools by chain/project/symbol, ranked by TVL, with APY/IL-risk |
bounty_radar | Currently-tracked bug-bounty/incident-lead opportunities, ranked by fit score |
resources/list)| URI | Contents |
|---|---|
vape://reputation | Reputation & verifiable-activity snapshot |
vape://intel-index | Linkable index of reports/broadcasts/investigations/tools |
# stdio server (what an MCP host launches)
python mcp_servers/vape_mcp.py
# in-process smoke test (no host needed)
python mcp_servers/vape_mcp.py --selftest
{
"mcpServers": {
"vape-detective": {
"command": "python",
"args": ["/abs/path/to/V.A.P.E/mcp_servers/vape_mcp.py"]
}
}
}
The host then sees every tool above and two resources — the LLM picks and calls them automatically.
Beyond serving its own tools, VAPE can now spawn and consume any MCP server — official reference servers and community search/scrape servers — via a pure-stdlib host client.
skillforge/mcp_client.py — the host. Spawns a server over stdio, does the
JSON-RPC handshake, lists/calls tools, tears it down. Servers are launched
lazily per call (no daemons = no idle compute). PATH is auto-augmented so
npx/uvx resolve even under cron/CI.mcp_servers/registry.json — declares every server: command, args, required
env keys, keyless flag, and verified package source. Keyed servers activate the
instant their env var is set — no code change.python -m skillforge.mcp_client list # registry + live/keyed/needs-runtime
python -m skillforge.mcp_client tools git # discover a server's tools
python -m skillforge.mcp_client call filesystem list_allowed_directories '{}'
| Server | Source | Status without keys |
|---|---|---|
vape | in-repo | live (VAPE's own tools) |
filesystem | npm @modelcontextprotocol/server-filesystem | live (sandboxed to intel/skillforge/reports) |
memory | npm @modelcontextprotocol/server-memory | live (knowledge-graph) |
sequential-thinking | npm @modelcontextprotocol/server-sequential-thinking | live |
fetch | pypi mcp-server-fetch (uvx) | live (needs uv) |
git | pypi mcp-server-git (uvx) | live (needs uv) |
sqlite | pypi mcp-server-sqlite (uvx) | live (needs uv) |
brave-search | npm @modelcontextprotocol/server-brave-search | needs BRAVE_API_KEY |
tavily | npm tavily-mcp | needs TAVILY_API_KEY |
firecrawl | npm firecrawl-mcp | needs FIRECRAWL_API_KEY |
apify | npm @apify/actors-mcp-server | needs APIFY_TOKEN |
brightdata | npm @brightdata/mcp | needs BRIGHTDATA_API_TOKEN |
github | npm @modelcontextprotocol/server-github | needs GITHUB_TOKEN |
The uvx runtime (uv) is a single static binary: curl -LsSf https://astral.sh/uv/install.sh | sh.
skillforge/research.py gives VAPE one search/scrape API that uses the best
available provider and falls back to keyless:
fetch.python -m skillforge.research providers # what's active right now
python -m skillforge.research search "base defi exploit bounty" --max 5
python -m skillforge.research scrape https://docs.base.org/
These are also exposed as MCP tools on VAPE's own server (research_search,
research_scrape, mcp_servers), so any host or VAPE agent can call them. Add a
provider key and the same call silently upgrades from keyless to Tavily/Firecrawl.
Note: keyless public search is unreliable from datacenter/CI IPs (they get blocked) — that is exactly why the keyed providers exist. Keyless scrape of known URLs works well via the MCP
fetchserver.
Added 2026-08-07: worker/src/mcpServer.ts exposes the same security suite
and market-data catalog already sold at /scan/<name> and /data/<name>
(see docs/ACP_PROTOCOL.md) as real MCP tools, reachable over
Streamable HTTP at POST /mcp on the live Cloudflare Worker
(https://vape-x402.vapex402.workers.dev/mcp) — no bespoke REST
integration needed. Any MCP-native agent with an x402-capable client (e.g.
@x402/mcp's x402MCPClient/createx402MCPClient) can tools/list for
free and then tools/call a priced tool, paying per call the same way the
HTTP routes already do — real USDC on Base or Solana, settled through the
same CDP facilitator, PAY_TO_ADDRESS, and SOLANA_PAY_TO_ADDRESS as
every other paid surface on this Worker. Every MCP tool is a thin wrapper
around the exact same handler the equivalent HTTP route calls
(handlers.ts::fulfill(), dataHandlers.ts::fulfillData()) — one
implementation, two transports, prices/schemas always in sync.
Tools exposed: the 6 security offerings (token_safety_check,
liquidity_check, rug_pull_alert, exploit_check, market_intel,
dossier_check) and all 14 /data/<name> market-data offerings (see
docs/ACP_PROTOCOL.md's tables for current prices — MCP pricing always
matches). Not yet wired: the async/bespoke offerings that don't go through
fulfill()/fulfillData() (bounty_deep_dive, deep_contract_audit,
tx_decode, bulk_safety_bundle, community_intel_broadcast,
website_review) — a natural follow-up, not started here.
This is a separate surface from the free stdio server above — that one stays exactly as-is (zero deps, free, local-first, the discovery/goodwill funnel), and requires no wallet to use. The remote MCP surface is the paid one, for agents (not humans in an IDE) that can actually sign and settle an x402 payment.
skillforge/mcp.py (VAPE's original "Modular Connector Protocol" wrappers for
GitHub/social/tool-registry) still runs as-is. This server is the standard
MCP surface layered on top — it does not replace the harvest wrappers, it makes
VAPE's investigation + memory capabilities interoperable with the wider ecosystem.
skillforge/memory/index_db.py projects the append-only JSONL memory into a
stdlib-SQLite index (with FTS5 full-text when available). The JSONL files
remain the source of truth / audit trail; the DB is a derived, rebuildable
projection so agents can ask real questions:
python -m skillforge.memory.index_db build
python -m skillforge.memory.index_db query "honeypot base" --category finding --days 30
python -m skillforge.memory.index_db stats
memory.db is not committed (gitignored) — it is rebuilt from JSONL each
cycle by the bounty-cycle workflow, and on demand by the MCP memory_search tool.
FAQs
V.A.P.E. (Virtual Ape Private Eye) — an autonomous on-chain security detective for Base, exposed over the standard Model Context Protocol (MCP).
We found that vape-mcp-server 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.

Product
Socket is bringing experimental protection to Firefox, scanning 97,000+ extensions in Mozilla's official directory for malware and risky updates.

Research
/Security News
Three compromised Rust crates pulled in a malicious dependency that downloaded and executed cross-platform malware during Cargo builds.

Research
/Security News
Socket uncovered 77 linked Firefox extensions, including 40 that steal wallet secrets or credentials and 37 deceptive sports-score shells.