RECLUSE Spider MCP Server
Enables autonomous web-contract verification through MCP tools for planning, classifying, checking, and recording bug patterns, with access to a shared community corpus that strengthens collective detection.
README
đˇď¸ RECLUSE
Autonomous web-contract verification â an MCP server + GitHub Action + collective bug-corpus that catches the bugs hiding in your system's seams.
The recluse bites the bugs that hide in the seams.
Vibe-coding made building fast â but fixing slow. RECLUSE traces your system's seams (producer â store â consumer contracts), catches the bugs that live there, blocks the PR, and pools every caught pattern into a collective corpus that makes everyone's spider smarter.
â Live page & corpus: https://eduverse-ai.app/recluse
Quickstart
â GitHub Action â gate every PR (blocks on đ´)
# .github/workflows/recluse.yml
name: RECLUSE
on:
pull_request:
branches: [main]
jobs:
weave:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with: { fetch-depth: 0 }
- uses: vinsenzo83/recluse@v1.1
with: { base: origin/${{ github.base_ref }} }
env:
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
Without a key it runs in advisory mode (known-trap checklist, non-blocking). With ANTHROPIC_API_KEY it does a real weave on the diff + đ´ blocking + contributes new patterns to the corpus.
⥠MCP server â for your editor (Cursor, Claude, any MCP client)
One line, no clone â published on npm:
{ "mcpServers": { "recluse": {
"command": "npx",
"args": ["-y", "recluse-mcp"],
"env": { "SPIDER_CORPUS_API": "https://eduverse-ai.app/api/corpus" }
} } }
MCP tools: spider_plan ¡ spider_classify_tier ¡ spider_checklist ¡ spider_record_pattern (local + shared contribution) ¡ spider_pull_corpus (collective pull).
MCP resources: spider://checklist ¡ spider://queries ¡ spider://corpus ¡ spider://blackbox.
How it works â autonomous loop
WEB (detect) â CATCH (a contract mismatch) â SPIDER (autonomous fix) â RE-WEAVE (verify) â loop until đ´ = 0
Multi-perspective spiders trace each end-to-end flow and compare what's written (column / type / enum / unit / authz) against what the consumer expects. Mismatches in the seams â the bugs no single-file review catches â get caught with live evidence.
Spider tiers â resource by criticality
| Spider | Model | Scope |
|---|---|---|
| đˇď¸ King | Opus | payments ¡ auth ¡ GDPR ¡ data loss ¡ secrets |
| đ¸ď¸ Mid | Sonnet | business logic ¡ contracts ¡ i18n ¡ gating |
| đ Baby | Haiku | docs ¡ dead code ¡ lint |
đ§Ź Collective corpus (the moat)
The more people use it, the thicker the corpus â every spider catches more (data network effect). Patterns are tech-stack-keyed, so a bug caught in one project helps everyone on the same stack.
- Scrub-first: file paths, code literals, secrets (keys / JWT / high-entropy), emails, URLs, IPs are stripped; anything still suspicious is rejected. Only the generalized technique is shared.
- Opt-in & anonymous: contributors/projects are stored only as irreversible hashes â no identity, no raw text.
Corpus API
POST /v1/patterns{klass,name,signal,fix,tags?,severity?,tier?}â scrub ¡ dedup ¡ trust accrualGET /v1/patterns?tags=postgres,payment&class=unit&limit=50â collective corpus (verified ¡ hit_count order)GET /healthz
Principles
No fabrication (live evidence only) ¡ scrub-first (zero code/secret leakage) ¡ opt-in & anonymous ¡ detection = read-only, fixes = isolated spiders.
Repo layout
src/index.js # MCP server (stdio)
cli/recluse.mjs # CI weave CLI
action.yml # GitHub Action
The collective corpus is a hosted service (https://eduverse-ai.app/api/corpus); its backend (schema, scrub pipeline, ingestion) is closed-source.
License
UNLICENSED (proprietary).
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
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.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.