RABEL
FreeNot checkedπ§ RABEL - MCP Server for AI-to-AI communication. I-Poll messaging, AINS domains, TIBET provenance. Part of HumoticaOS.
About
π§ RABEL - MCP Server for AI-to-AI communication. I-Poll messaging, AINS domains, TIBET provenance. Part of HumoticaOS.
README
PyPI version Downloads Python 3.10+ License: AGPL-3.0
Recidive Active Brain Environment Layer
Local-first AI memory with semantic search, graph relations, and soft pipelines. Mem0 inspired, HumoticaOS evolved.
By Jasper & Root AI from HumoticaOS π
π Quick Start
Option 1: pip install (recommended)
# Install
pip install mcp-server-rabel
# For full features (vector search)
pip install mcp-server-rabel[full]
# Add to Claude CLI
claude mcp add rabel -- mcp-server-rabel
# Verify
claude mcp list
# rabel: β Connected
Option 2: Docker
# Build
docker build -t mcp-server-rabel .
# Run (MCP uses stdio)
docker run -i mcp-server-rabel
# With persistent data
docker run -i -v rabel-data:/data mcp-server-rabel
Option 3: From source
git clone https://github.com/jaspertvdm/RABEL.git
cd RABEL
pip install -e .
mcp-server-rabel
π€ What is RABEL?
RABEL gives AI assistants persistent memory that works 100% locally.
Before RABEL:
AI: "Who is Storm?" β "I don't know, you haven't told me"
After RABEL:
You: "Remember: Storm is Jasper's 7-year-old son"
AI: *saves to RABEL*
Later...
You: "Who is Storm?"
AI: *searches RABEL* β "Storm is Jasper's 7-year-old son!"
No cloud. No API keys. No data leaving your machine.
π οΈ Available Tools
| Tool | Description |
|---|---|
rabel_hello |
Test if RABEL is working |
rabel_add_memory |
Add a memory (fact, experience, knowledge) |
rabel_search |
Semantic search through memories |
rabel_add_relation |
Add graph relation (A --rel--> B) |
rabel_get_relations |
Query the knowledge graph |
rabel_get_guidance |
Get soft pipeline hints (EN/NL) |
rabel_next_step |
What should I do next? |
rabel_stats |
Memory statistics |
π Examples
Adding Memories
# Remember facts
rabel_add_memory(content="Jasper is the founder of HumoticaOS", scope="user")
rabel_add_memory(content="TIBET handles trust and provenance", scope="team")
rabel_add_memory(content="Always validate input before processing", scope="agent")
Searching Memories
# Semantic search - ask questions naturally
rabel_search(query="Who founded HumoticaOS?")
# β Returns: "Jasper is the founder of HumoticaOS"
rabel_search(query="What handles trust?")
# β Returns: "TIBET handles trust and provenance"
Knowledge Graph
# Add relations
rabel_add_relation(subject="Jasper", predicate="father_of", object="Storm")
rabel_add_relation(subject="TIBET", predicate="part_of", object="HumoticaOS")
rabel_add_relation(subject="RABEL", predicate="part_of", object="HumoticaOS")
# Query relations
rabel_get_relations(subject="Jasper")
# β Jasper --father_of--> Storm
rabel_get_relations(predicate="part_of")
# β TIBET --part_of--> HumoticaOS
# β RABEL --part_of--> HumoticaOS
Soft Pipelines (Bilingual!)
# Get guidance in English
rabel_get_guidance(intent="solve_puzzle", lang="en")
# β "Puzzle: Read β Analyze β Attempt β Verify β Document"
# Get guidance in Dutch
rabel_get_guidance(intent="solve_puzzle", lang="nl")
# β "Puzzel: Lezen β Analyseren β Proberen β VerifiΓ«ren β Documenteren"
# What's next?
rabel_next_step(intent="solve_puzzle", completed=["read", "analyze"])
# β Suggested next step: "attempt"
ποΈ Architecture
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β RABEL β
β Recidive Active Brain Environment Layer β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β β
β Memory Layer β Semantic facts with embeddings β
β Graph Layer β Relations between entities β
β Soft Pipelines β Guidance without enforcement (EN/NL) β
β β
β Storage: SQLite + sqlite-vec (optional) β
β Embeddings: Ollama nomic-embed-text (optional) β
β β
β 100% LOCAL - Zero cloud dependencies β
β β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
Graceful Degradation
RABEL works with minimal dependencies:
| Feature | Without extras | With [full] |
|---|---|---|
| Text memories | β | β |
| Text search | β (LIKE query) | β (semantic) |
| Graph relations | β | β |
| Soft pipelines | β | β |
| Vector search | β | β |
| Embeddings | β | β (Ollama) |
π Philosophy
"LOKAAL EERST - het systeem MOET werken zonder internet"
(LOCAL FIRST - the system MUST work without internet)
RABEL is built on the belief that:
- Your data stays yours - No cloud, no tracking, no API keys
- Soft guidance beats hard rules - Pipelines suggest, not enforce
- Bilingual by default - Dutch & English, more coming
- Graceful degradation - Works with minimal deps, better with more
π Credits
Inspired by: Mem0 - Thank you for the architecture insights!
We took their ideas and made them:
- 100% local-first
- Bilingual (EN/NL)
- With soft pipelines
- With graph relations
π’ Part of HumoticaOS
RABEL is part of a larger ecosystem:
| Package | Purpose | Status |
|---|---|---|
| mcp-server-tibet | Trust & Provenance | β Available |
| mcp-server-rabel | Memory & Knowledge | β Available |
| mcp-server-betti | Complexity Management | π Coming |
π Contact
HumoticaOS
- Website: humotica.com
- GitHub: github.com/jaspertvdm
π License
AGPL-3.0 License - One love, one fAmIly π
This is open source software. If you use it in a network service, you must share your modifications.
Built with love in Den Dolder, Netherlands By Jasper & Root AI - December 2025
Official Distribution
This package is officially distributed via:
Note: Third-party directories may list this package but are not official or verified distribution channels for Humotica software.
Installing RABEL
This server has no published package β it is built from source. Open the repository and follow its README.
βΈ github.com/jaspertvdm/RABELFAQ
Is RABEL MCP free?
Yes, RABEL MCP is free β one-click install via Unyly at no cost.
Does RABEL need an API key?
No, RABEL runs without API keys or environment variables.
Is RABEL hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install RABEL in Claude Desktop, Claude Code or Cursor?
Open RABEL on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install β the config is generated automatically, no JSON editing.
Related MCPs
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
by modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
by xuzexin-hzMCP-Agent
A simple, composable framework to build agents using Model Context Protocol by [LastMile AI](https://www.lastmileai.dev)
by lastmile-aiSpring AI MCP Client
Provides auto-configuration for MCP client functionality in Spring Boot applications.
mcp.natoma.ai
A Hosted MCP Platform to discover, install, manage and deploy MCP servers by [Natoma Labs](https://www.natoma.ai)
MCPHub
Website to list high quality MCP servers and reviews by real users. Also provide online chatbot for popular LLM models with MCP server support.
MCP Servers Rating and User Reviews
Website to rate MCP servers, write authentic user reviews, and [search engine for agent & mcp](http://www.deepnlp.org/search/agent)
mkinf
An Open Source registry of hosted MCP Servers to accelerate AI agent workflows.
Compare RABEL with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All ai MCPs
