Skip to main content
Glama
VibeLeading

mcp-hybrid-data-engine

by VibeLeading

mcp-hybrid-data-engine

The Memory Hub.

An MCP server implementing the Vibe Leading Hybrid Data Engine — the integration of the three data planes described in Vibe Leading The AI:

Plane

Role

This server

Production backend

Stone

Legacy SQL / Oracle, fact ledger

query_stone (SQLite)

Oracle / Postgres + CDC

Light

Vector semantic context

index_light / semantic_search

Pinecone / Milvus + embeddings

Flow

Analytical columnar for the HUD (milliseconds)

flow_put_rows / flow_query

DuckDB / Parquet

Installation

npm install -g mcp-hybrid-data-engine
# or run directly without installing:
npx mcp-hybrid-data-engine

Related MCP server: MCP RAG Server

Client configuration

Add to your MCP client config (e.g. Claude Code .mcp.json or Cursor mcp.json):

{
  "mcpServers": {
    "hybrid-data-engine": {
      "command": "npx",
      "args": ["mcp-hybrid-data-engine"]
    }
  }
}

Tools

Tool

Description

Key args

query_stone

Read-only SQL against a SQLite file (Stone)

sql, database?

stone_cdc_tick

CDC version + changed-tables heuristic

index_light

Add a doc to the semantic index (Light)

id, text, metadata?

semantic_search

Ranked cosine-similarity matches

query, top_k?, threshold?

flow_put_rows

Store columnar rows for analytics (Flow)

table, columns, rows

flow_query

sum/avg/min/max/count with optional grouping

table, operation, column, groupBy?

Environment variables

Variable

Default

Purpose

MCP_STONE_PATH

data/stone.db

SQLite file used by The Stone

MCP_LIGHT_PATH

data/light.json

Persistence file for The Light index

MCP_FLOW_PATH

data/flow.json

Persistence file for The Flow store

Notes

  • Stone: read-only by design. Statement prefixes are validated; anything outside SELECT/PRAGMA/WITH/EXPLAIN is rejected. The stone_cdc_tick reports a coarse WAL-based heuristic — a production deployment should wire a real CDC adapter (Debezium + Oracle) behind the same surface.

  • Light: uses a deterministic bag-of-character-ngrams hashed-vector embedding with cosine similarity. Swap in a real embedding provider (OpenAI / voyage) and a real vector DB (Pinecone / Milvus) behind the Embedder interface in src/vector-store.ts.

  • Flow: an in-memory columnar store persisted to JSON. See src/analytics-engine.ts for the interface that a DuckDB / Parquet backend would implement.

License & Attribution

MIT — Copyright (c) 2026 Jean Machuca (see LICENSE).

This server implements concepts from the book Vibe Leading The AI: The Corporate Race Against Machines by Jean Machuca (ISBN 9798252505008, © 2026 Jean Machuca). The book is copyrighted commercial material; this repository does not republish its text. Buy the book at https://vibeleading.org or https://a.co/d/04L5YatK. Author website: jeanmachuca.com · Support on GitHub Sponsors: github.com/sponsors/jeanmachuca. See NOTICE.

A
license - permissive license
Not graded
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables document ingestion, semantic search, and retrieval-augmented generation via MCP tools and REST API, using vector embeddings and intelligent chunking.
    MIT
  • A
    license
    Not graded
    quality
    A
    maintenance
    Enables natural language querying of SQL databases and REST APIs through the MCP protocol, grounded in a semantic layer.
    2,887
    1
    AGPL 3.0
  • A
    license
    Not graded
    quality
    B
    maintenance
    Enables enterprise AI agents to query governed data lineage, PII-aware schema documentation, and semantic metadata from SQL logs via MCP, with role-based access and vector search.
    MIT

View all related MCP servers

Related MCP Connectors

  • Analytical memory for AI agents: a real Postgres queried in plain English over MCP. One command.

  • Cross-vendor AI memory over MCP. One semantic store, readable and writeable from every MCP client.

  • Your memory, everywhere AI goes. Build knowledge once, access it via MCP anywhere.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/VibeLeading/mcp-hybrid-data-engine'

If you have feedback or need assistance with the MCP directory API, please join our Discord server