RECLUSE Spider MCP Server

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.

Category
Visit Server

README

🕷️ RECLUSE

npm

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 accrual
  • GET /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

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.

Official
Featured
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

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.

Official
Featured
TypeScript
Kagi MCP Server

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.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

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.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured