Skip to main content

V.A.P.E. MCP Server — standard Model Context Protocol

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.

Why this way

  • Zero new dependencies. MCP is JSON-RPC 2.0 over stdio; the server speaks it directly with pure stdlib. Nothing to pip install — keeps VAPE compute-free and Termux/Android-friendly (stdio is the local transport).
  • Real code, real data. Every tool calls existing VAPE functions (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.
  • Read-only / keyless-first. Nothing here signs, spends, or mutates chain state — safe to expose to any host.

Tools exposed (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 exposed (resources/list)

URI Contents
vape://reputation Reputation & verifiable-activity snapshot
vape://intel-index Linkable index of reports/broadcasts/investigations/tools

Run it

# 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

Register in an MCP host (stdio)

{
  "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.

VAPE as an MCP host (consuming the ecosystem)

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 '{}'

Registered servers

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.

Unified research router

skillforge/research.py gives VAPE one search/scrape API that uses the best available provider and falls back to keyless:

  • search: Tavily → Brave → keyless (SearXNG/DDG, best-effort).
  • scrape: Firecrawl → Bright Data → Apify → keyless MCP 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 fetch server.

Paid, agent-to-agent MCP surface (remote, x402)

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.

Relationship to the old MCP layer

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.

Queryable memory (companion)

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.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

vape_mcp_server-1.1.0.tar.gz (599.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

vape_mcp_server-1.1.0-py3-none-any.whl (480.0 kB view details)

Uploaded Python 3

File details

Details for the file vape_mcp_server-1.1.0.tar.gz.

File metadata

  • Download URL: vape_mcp_server-1.1.0.tar.gz
  • Upload date:
  • Size: 599.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for vape_mcp_server-1.1.0.tar.gz
Algorithm Hash digest
SHA256 8223c2f36808d1f54cc67b7bcf34d3216106f75527064abe43290799983a72c8
MD5 4c2f1b819d1659a8235c76d8f6fc15e7
BLAKE2b-256 112e42b1d8b2ecc354cbdfab785b774c1b936513a88d83bee4d91beac9a9d0a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for vape_mcp_server-1.1.0.tar.gz:

Publisher: publish-pypi.yml on jUXTAPOSITION1/V.A.P.E

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vape_mcp_server-1.1.0-py3-none-any.whl.

File metadata

  • Download URL: vape_mcp_server-1.1.0-py3-none-any.whl
  • Upload date:
  • Size: 480.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for vape_mcp_server-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 87209b9e4511ba3474554b1b3bb9d63c86e945e1c043d9b8a6aa24e9254bd180
MD5 cce78c8082e66d3a51447b337164ec5c
BLAKE2b-256 6b30e72ccb0cca43121512447faf156f8ecc71e025194d015ca552efaa6b37b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for vape_mcp_server-1.1.0-py3-none-any.whl:

Publisher: publish-pypi.yml on jUXTAPOSITION1/V.A.P.E

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page