Labsco
zyx77550 logo

Sparda

โ˜… 2

from zyx77550

Turn any codebase into an MCP server with one command. Express & FastAPI โ†’ Claude-ready in 3 minutes.

๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅโœ“ VerifiedFreeQuick setup

SPARDA

SPARDA Banner

Compile your backend into a deterministic behavior runtime.

For twenty years, software communicated via APIs. Then AI agents arrived. The industry's response was simply to expose more endpoints (MCP). But an agent doesn't understand your application; it only sees a list of disconnected tools. That is enough for a human, but not for an autonomous machine.

SPARDA analyzes your Express, FastAPI, or Next.js application, extracts its behavior, and compiles it into a SPARDA Behavior Graph (SBG).

This graph acts as a local, deterministic runtime that powers:

  • MCP Server Integration: Exposing your endpoints to AI clients dynamically.
  • SPARDA Twin: An executable, offline simulation clone of your backend for safe agent testing.
  • SPARDA Immune: Real-time graph-based anomaly defense, latency alerts, and auto-quarantine.
  • SPARDA Evolution: Statically inferred grammar mapping and in-memory workflow optimization.

All executed 100% locally, with zero runtime dependencies and zero cloud connection.

npx sparda-mcp init   # Scan your app, compile the UBG, inject the SPARDA Runtime
npx sparda-mcp dev    # Connect Claude Desktop / Cursor over stdio

No OpenAPI spec to write. No cloud account. No API key. No server to host. Exposing raw APIs to AI is the old way. SPARDA compiles the whole system's behavior.

Try the Standalone Demo

To see SPARDA in action instantly without modifying your codebase:

npx sparda-mcp demo

This runs the entire lifecycle (detect โ†’ parse โ†’ generate โ†’ inject โ†’ remove) on a bundled demo app in a temporary folder, illustrating all six guarantees in 10 seconds.

Black Box Report

SPARDA is designed as a local organism. To see what it remembers and how much compute it has recycled:

npx sparda-mcp report

This prints a terminal dashboard aggregating your exposed tools, write opt-ins, proof journal decisions, and crystallized composite tools.

To write a self-contained, offline HTML dashboard at .sparda/report.html, append the --html flag:

npx sparda-mcp report --html

To output raw JSON for integration:

npx sparda-mcp report --json

The promise โ€” every word is backed by a test in CI

SPARDA Features

  1. Three minutes, one command. AST scan, router generation, reversible injection โ€” no config.
  2. Try it for free, leave for free. npx sparda-mcp remove restores your code byte-for-byte (tested on JS, TS, Python, even Windows CRLF files). No trace, no lock-in.
  3. The AI cannot write until you say so. Every POST/PUT/DELETE is disabled by default; you enable per tool, and your choice survives every re-run.
  4. Your app defends itself. A route failing 3 times in a row is quarantined โ€” the AI can't hammer your broken production. Latency anomalies are flagged. Zero LLM needed.
  5. Nothing leaves your machine. No telemetry to us, no cloud, local key auth, 4 exact-pinned dependencies.
  6. What it learns is never lost. Diagnoses, descriptions, settings โ€” versioned with your git, surviving every re-init.

What we don't promise: the honest limits in docs/SECURITY.md.

How it works

  1. npx sparda-mcp init parses your codebase (AST), extracts every route, and injects a tiny marked router (/mcp) into your app โ€” fully reversible with npx sparda-mcp remove.
  2. Tool calls run inside your live app process โ€” warm DB pools, real auth chain, real data. SPARDA adds no infrastructure: compute comes from your host process, intelligence from your AI client's own model (MCP sampling), storage from sparda.json + git.
  3. Write tools (POST/PUT/DELETE) are disabled by default. You opt in per tool in sparda.json โ€” your choices survive re-runs.
  4. Suspicious docstrings are sanitized before they ever reach the AI (prompt-injection defense).
  5. npx sparda-mcp doctor --app audits your codebase for drift: it detects stale tools (IA seeing ghosts), unsynced routes, schema drift via fingerprints, and zombie configurations. High severity issues trigger a non-zero exit code for your CI pipeline.
  6. npx sparda-mcp seed export/import lets you package and share your app's "genome" (semantic memory, workflows, antibodies) securely, transferring immune memory between environments or across similar stacks with zero data leak.
  7. npx sparda-mcp twin starts a safe, simulated mock server of your backend on the original port. It serves GET calls from learned exemplars (observed response shapes & mock data) and returns simulated 202 writes without ever touching your real database or production APIs. Learn exemplars by running npx sparda-mcp twin --learn.
  8. npx sparda-mcp grammar maps the graph of valid sequences of tool calls (observed circuits and candidate hypotheses) to prevent LLM hallucination of routes.
  9. npx sparda-mcp evolve mutates candidate chains and tests them against the twin in-memory, promoting successful chains to evolved workflow suggestions.

What SPARDA gives your AI

Operate, not just read

Every route becomes a tool that runs against your live process โ€” real auth, real data, warm connections. One call to sparda_get_context hands the AI the whole living picture: enabled tools, suggested workflows, runtime telemetry, quarantine state, and immune memory โ€” so every session resumes where the last one stopped.

Write-safety: the AI can't write until you say so

  • Writes (POST/PUT/DELETE) ship disabled. Enable them per tool in sparda.json; your choice survives every re-init.
  • An enabled write is never executed on the first call. SPARDA returns an awaiting_confirmation envelope โ€” a single-use token plus a preview of the action โ€” and commits only after an explicit confirm step.
  • When your client supports MCP elicitation, that confirmation prompt appears in the AI's own UI.
  • Proof-after-write: every successful write is followed by a read-back of the same resource, so the AI โ€” and you โ€” see the real effect, not a hopeful guess.

Your app defends itself โ€” zero LLM on the hot path

  • Quarantine. A tool that returns 3 consecutive 5xx is quarantined: further calls get a 503 with a reason and a retry delay instead of hammering your broken route. After a cooldown it half-opens for a single probe.
  • Latency & anomaly flags. The router learns each route's baseline and flags deviations locally, in a few lines of math.
  • Adaptive diagnosis, only on surprise. A genuinely new failure wakes your AI client's own model to diagnose it once; the diagnosis is cached as an "antibody" in sparda.json, so the same failure later costs zero tokens. Cloning your code doesn't clone its immune memory.

A free intelligence layer, zero API key

On first connection your AI client's own model (via MCP sampling) rewrites raw routes into business-language tool descriptions and proposes multi-step workflows โ€” cached in sparda.json and exposed as MCP prompts. Nothing to configure, nothing to pay.

It gets cheaper the more you use it

  • Response recycling. When a read keeps returning the same answer, SPARDA serves the next identical call straight from memory โ€” without touching your host app. Reads only; writes always hit the host.
  • A recycling gauge. GET /mcp/stats counts how many calls were answered from SPARDA's own knowledge vs. how many paid the host route. It reads 0% on day one and fills with usage โ€” a measure, never a promise.

Tools nobody wrote โ€” Labs, opt-in, default OFF

Turn it on with "labs": { "recordSequences": true } in sparda.json. SPARDA then notices when one tool's output feeds the next tool's input and records the circuit โ€” structure only (tool names, argument names, counts), never your data. A read-only circuit seen enough times crystallizes into a composite tool, announced mid-session: one call runs the whole chain, auto-feeding each step from the previous step's real response. Write routes are never absorbed โ€” their per-call confirmation always stands.

Living context & telemetry

GET /mcp/stats (per-tool calls/errors, tool "purity", quarantine state) and GET /mcp/events (errors, latency anomalies, cached diagnoses) expose exactly what your app is doing โ€” surfaced to the AI as live notifications.

Built for AI clients: the bundled Skill

SPARDA ships with an Agent Skill (SKILL.md) that teaches any compatible AI client how to drive a SPARDA server to its full potential โ€” call sparda_get_context first, exploit response recycling, honor quarantine, prefer crystallized circuits over re-walking a chain, and follow the two-phase write-confirm protocol. The live, per-project tool list always comes from sparda_get_context at runtime, so the guidance never goes stale.

Supported frameworks

  • Next.js App Router (13/14/15) โ€” file-based injection. Since Next.js uses file-system routing, SPARDA simply creates a catch-all route handler under app/mcp/[...sparda]/route.js. Nothing in your existing codebase's code is touched; running remove simply deletes the generated file.
  • Express 4/5 (JS/TS, ESM/CJS) โ€” AST-based router injection.
  • FastAPI (Python >= 3.9) โ€” AST-based router injection.

Security posture (honest)

  • 4 runtime dependencies, exact-pinned.
  • Dynamic Local Key Resolution. The generated router contains no baked secrets. It resolves authorization keys at runtime from the SPARDA_LOCAL_KEY environment variable or the local gitignored .sparda/key file, and fails closed (503) when neither is found. For custom production or staging setups, you can override this behavior by exposing SPARDA_LOCAL_KEY in your environment.
  • Local key on every router call; self-reference loop protection; 30s timeouts; 8 KB output truncation.
  • AST-positioned injection with backup and post-injection re-parse; npx sparda-mcp remove leaves a clean git diff.
  • Persistence is value-free: SPARDA records structure (tool names, field names, fingerprints), never your payloads.

Full threat model and known gaps: docs/SECURITY.md.

Documentation

Beyond the open core

SPARDA is free, including in production (see License). Team-scale capabilities โ€” fine-grained per-person access policies and a signed, tamper-evident audit log โ€” are planned for a future paid tier. The open core stands on its own; nothing here is crippled to upsell you.