Skip to content
Moorcheh Logo

The World's First Information-Theoretic Search Engine

Ultra-fast, deterministic, index-free semantic search — and the full AI infrastructure stack that grew around it.

Memanto Stars

LinkedIn X Discord YouTube Website


🧠 What Is Moorcheh?

Moorcheh pioneered the information-theoretic approach to semantic search — the same foundational direction Google Research later brought to mainstream attention with their TurboQuant paper. We've been shipping production systems on these principles for two years, and we've gone well beyond what the academic papers describe.

While TurboQuant and RaBitQ address compression, Moorcheh combines three integrated components that operate as a whole:

  • MIB — Maximally Informative Binarization · information-theoretic compression tuned to preserve semantic content, not just minimize geometric distortion.
  • EDM — Efficient Distance Metric · bitwise operations on native CPU instructions, replacing the floating-point math behind cosine similarity.
  • ITS — Information-Theoretic Score · a ranking mechanism that replaces geometric proximity as the relevance signal, with an integrated reranker. This is the part the papers don't touch — and it's why our end-to-end latency beats two-stage (search + external rerank) architectures by ~6.6×.

Compression alone can't get you there. Compression plus the right scoring function plus the right execution model can.

📄 Moorcheh White Paper: arxiv.org/abs/2601.11557 · 📰 Our take on the TurboQuant moment: Read the blog


⚡ Proven Performance

Metric Result Context
NDCG@10 64–74% Matches float32 systems despite 32× compression
Distance Calc 9.6 ms vs 37–86 ms (PGVector, Qdrant)
Throughput 2,000+ QPS Sustained, zero accuracy degradation
End-to-End 6.6× faster vs Pinecone + Cohere rerank
Idle Cost $0 Truly scales to zero

Benchmarked across 14 MAIR datasets and 10,038 queries — constant throughput across all precision levels, something HNSW-based systems structurally cannot do.


🏗️ The Index-Free Architecture

Out of the engine grew a fully serverless, cloud-native architecture that powers large enterprise customers — saving millions while maintaining production-grade AI infrastructure and knowledge management.

Moorcheh introduced the first index-free database architecture: no dependence on RAM, no delay from indexing and re-indexing. It performs a full scan of every entry in a few milliseconds — deterministic, exact-match retrieval at any scale.

Real impact: one enterprise deployment went from $2.5M/year → $36K/year in retrieval infrastructure costs.

  • Sovereign by design — deploys into your VPC on AWS, GCP, or Azure
  • Zero egress — no data ever crosses your perimeter
  • True serverless economics — scales to millions of queries or to $0 when idle
  • Deploys in under 10 minutes via Infrastructure-as-Code

🧩 The Moorcheh Ecosystem

Everything below grew out of the core engine — a complete, open, and community-driven AI stack.

☁️ Moorcheh Cloud

A complete studio for testing, building, and deploying AI applications and chatbots — with free credits, a full playground, and a comprehensive set of functional API endpoints supporting the most complex workflows.

API Keys Playground Docs

🐜 Memanto — Memory that AI Agents Love

A companion memory agent that pairs with any working agent to manage memories across sessions, tools, and time. Fully open source and community-driven, it inherits Moorcheh's deterministic retrieval — eliminating the behavioral drift that ANN-based memory introduces into multi-turn agents. Continually gaining traction with AI developers and agent builders.

Memanto on GitHub Memanto Stars Memanto PyPI Downloads

📄 Memanto White Paper: arxiv.org/abs/2604.22085 · 🌐 memanto.ai · 📰 Memanto Blog · 📈 Download stats

🦅 MemantoClaw

Born from the need for higher accuracy and functionality in OpenClaw / NeMo Claw architectures. Runs entirely through the Moorcheh API ecosystem and a single API key — no external connectors required. The only known method of running and deploying OpenClaw bots fully contained within an air-gapped infrastructure.

🏠 Moorcheh On-Prem (Free)

A free on-premise version that pairs with local models and performs every cloud functionality directly from your own machine — zero cloud reliance.

📦 Moorcheh Edge

The newest addition: a lightweight, containerized search engine that runs on even the most restricted devices at incredible speed and accuracy.

🛠️ Open Source for Builders

Many community-driven projects help indie developers and hackers tap into Moorcheh's engine — including the JS Chat Boilerplate, which lets you ship a full chat application with minimal code.


🔌 Deeply Integrated Everywhere

Moorcheh plugs natively into the major AI infrastructure and agentic stacks:

LangChain LlamaIndex Hugging Face n8n MCP

LangChain · LangGraph · LlamaIndex · n8n · CrewAI · Hugging Face · MCP · and more.


🚀 Quick Start

Install the SDK:

pip install moorcheh-sdk

Build a RAG system in seconds:

import os
from moorcheh_sdk import MoorchehClient

client = MoorchehClient(api_key=os.getenv("MOORCHEH_API_KEY"))

# Create a namespace and ingest documents
client.create_namespace("my-rag", "text")
client.upload_documents("my-rag", [
    {"id": "doc1", "text": "Your content...", "metadata": {}}
])

# Get an AI-powered, grounded answer
answer = client.get_generative_answer(
    namespace="my-rag",
    query="Your question here"
)
print(answer["answer"])

PyPI Downloads Boilerplate Downloads n8n Downloads


📚 Featured Repositories

Repo ⭐ Stars Description
memanto 🐜 Memory that AI Agents Love — the companion memory agent
moorcheh-python-sdk 🐍 Official Python SDK for the Moorcheh Semantic Search API
moorcheh-chat-boilerplate 💬 Production-ready Next.js chat app powered by ITS search + RAG
moorcheh-mcp 🔌 MCP server bringing Moorcheh search & RAG to MCP clients
memantoclaw 🦅 Air-gapped OpenClaw deployment via the Moorcheh API
langchain-moorcheh 🦜 Seamless LangChain ↔ Moorcheh integration
n8n-nodes-moorcheh ⚡ n8n nodes for ingestion, semantic search & AI workflows
moorcheh-examples 📓 Practical sample projects and integration recipes
moorcheh-benchmarks 📊 Benchmarks, experiments, and use cases

➡️ Browse all repositories →


💡 Use Cases

Real, runnable examples across regulated and document-heavy domains:

📂 Analyzing Codebases Moorcheh + Firecrawl + LlamaIndex
💰 Financial Documents Moorcheh + LangChain
🌍 Geographical Documents Moorcheh + LlamaIndex
🏥 Healthcare Documents Moorcheh + LlamaIndex
⚖️ Legal Documents Moorcheh + LlamaIndex
🔬 Scientific Journals Moorcheh + LangChain

📖 Learn More


Transform your search. Elevate your AI.

Built for developers, trusted by enterprises.

🇨🇦 Made with ❤️ by Edge AI Innovations Inc.

Popular repositories Loading

  1. memanto memanto Public

    Memory that AI Agents Love!

    Python 273 179

  2. moorcheh-python-sdk moorcheh-python-sdk Public

    Python SDK for interacting with the Moorcheh Semantic Search API v1. Moorcheh provides ultra-fast, highly accurate vector similarity search and analysis capabilities based on information-theoretic …

    Python 46 4

  3. memanto-evaluation memanto-evaluation Public

    This repo is for memanto evaluation

    TypeScript 9

  4. moorcheh-examples moorcheh-examples Public

    This repository contains practical examples and sample projects demonstrating how to use Moorcheh, a framework for building AI-powered chat applications.

    Jupyter Notebook 7

  5. llm-wiki llm-wiki Public

    LLM wiki enhanced by Moorcheh

    Python 4

  6. moorcheh-benchmarks moorcheh-benchmarks Public

    Benchmark tests, experiments and use cases of Moorche

    Jupyter Notebook 3 1

Repositories

Showing 10 of 18 repositories

People

This organization has no public members. You must be a member to see who’s a part of this organization.

Top languages

Loading…

Most used topics

Loading…