ontorata/ratary

🧠 Knowledge & Memory
0 Views
0 Installs

πŸ“‡ 🏠 ☁️ 🍎 πŸͺŸ 🐧 - Persistent coding memory for AI assistants β€” hybrid search, knowledge graph, token-efficient context. MCP stdio (28 tools), npm @ratary/mcp-server, optional remote Streamable HTTP. Self-host D1, Postgres, MariaDB, or Docker.

Quick Install

One-Click IDE Configuration
claude_desktop_config.json
{
  "mcpServers": {
    "ontorata-ratary": {
      "command": "npx",
      "args": [
        "-y",
        "ontorata-ratary"
      ]
    }
  }
}
Or

Using an AI coding agent (Claude Code, Cursor, etc.)? Copy a ready-made prompt that tells it to fetch the setup instructions and install this server for you.

Documentation Overview

Ontorata

Ratary

Build AI that remembers.

Ratary is the open-source AI Brain Platform β€” persistent memory,
structured knowledge, and intelligent retrieval for every model and agent you run.

Get started β†’ Β Β·Β  Star on GitHub Β Β·Β  Website Β Β·Β  Docs

MIT License MCP native Self-host Node 24 @ratary/sdk on npm @ratary/cli on npm @ratary/mcp-server on npm

Ratary is where AI remembers. Β· Built by Ontorata

Quick start Β· Ecosystem Β· Architecture Β· How it works Β· Capabilities Β· Docs


The problem

Why does AI forget between sessions?

Every AI session starts from zero.

Your model forgets yesterday's architecture decisions. Your agent drops customer context between runs. Your coding assistant can't recall why you chose Postgres over DynamoDB. Teams paste the same background into Cursor, Claude, ChatGPT, and custom bots β€” and knowledge still drifts.

Vector databases store chunks. RAG pipelines retrieve documents. Agent frameworks orchestrate tools.

None of them give AI a durable brain.


Why Ratary exists

Why build a brain layer now?

AI models are getting cheaper. Context windows are getting larger. Agents are getting capable.

But AI still forgets.

The bottleneck is no longer reasoning. It's memory β€” durable, structured, retrievable, and owned by you.

Every serious application eventually needed a database. Every serious AI system will need a brain layer: persistent intelligence that sits between your models and your storage β€” independent of any single vendor, IDE, or agent framework.

AI should remember.
Developers should own that memory.

Ratary exists to be that layer. Applications bring models. Ratary brings the brain.


What Ratary is

What is Ratary?

Ratary is an AI Brain Platform β€” infrastructure that gives AI:

  • Persistent memory β€” durable, owner-scoped, versioned
  • Structured knowledge β€” metadata, relations, graph traversal
  • Intelligent retrieval β€” hybrid search + bounded context assembly
  • Protocol access β€” Ratary MCP, REST, optional gRPC

It sits between AI clients and storage. One brain, many surfaces β€” Cursor, Claude Code, custom agents, enterprise APIs, and remote MCP hosts.

The runnable deployment is Ratary Server β€” this repository. Ratary is the product; Ratary Server is what you clone and run.

Bring your model. Ratary brings the memory.


Quick start

How do I run Ratary Server locally?

Ratary is the product. Ratary Server is the open-source deployment you run β€” ontorata/ratary (this repository). @ratary/sdk, @ratary/cli, and Ratary MCP connect to it; sibling Ontorata products use the same source of truth.

Prerequisites: Node.js 24 Β· SQL metadata store (pick one β€” Postgres is the template default)

Path A β€” PostgreSQL (npm + local or Docker)

git clone https://github.com/ontorata/ratary.git
cd ratary && npm install
cp .env.example .env   # Set AUTH_SECRET + DATABASE_URL β€” see .env.example QUICK START
npm run db:apply-postgres-schema
npm run setup          # wire Ratary MCP for Cursor, Claude Code, …
npm run dev

Or use Docker: docker compose --profile postgres up --build β€” see docs/DOCKER.md.

Path B β€” Cloudflare D1

git clone https://github.com/ontorata/ratary.git
cd ratary && npm install
cp .env.example .env   # Set AUTH_SECRET + SQL_PROVIDER=d1 + CLOUDFLARE_* / D1_*
npm run db:migrate
npm run setup
npm run dev

Details: docs/GUIDE.md Β· docs/CONFIGURATION.md

β†’ API http://localhost:9876 Β· Swagger /docs

First REST call: bootstrap once to get an API key (aic_...) β€” see GUIDE β€” First REST API key.

# Save your first memory
curl -X POST http://localhost:9876/api/v1/memory \
  -H "Authorization: Bearer aic_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"title":"Hello brain","project":"demo","content":"Ratary remembers this."}'

Full guide: docs/GUIDE.md Β· SDK & MCP examples in docs/examples/

npm packages (@ratary)

Client libraries ship on npm under the @ratary scope β€” product name, published by Ontorata. No server clone required for SDK, CLI, or hosted MCP.

npm install @ratary/sdk@1.1.0
npx @ratary/mcp-server@1.1.3          # remote REST β†’ stdio MCP
npm install -g @ratary/cli@1.1.0      # operator CLI
PackageVersionInstallRole
@ratary/sdk1.1.0npm install @ratary/sdkTyped REST client + client.admin.*
@ratary/cli1.1.0npm install -g @ratary/cliOperator commands (admin, connectors)
@ratary/mcp-server1.1.3npx @ratary/mcp-serverIDE MCP β†’ hosted API

Set RATARY_BASE_URL and RATARY_API_KEY (aic_...). Details: packages/README.md Β· remote MCP install.


Ecosystem

Which repository owns what?

The Visual architecture diagram shows logical layers inside Ratary Server. This diagram shows repository and product relationships β€” what ships in this repo, what connects to it, and what lives in sibling Ontorata repositories. Both views describe the same platform from different angles.

Throughout this README, Ratary MCP means the official memory MCP implementation (stdio in this repo Β· npm @ratary/mcp-server for hosted REST). It is not the same as Ontorata MCP (ecosystem gateway β€” separate repo).

β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚                      Ratary Cloud (opt-in)                  β”‚
β”‚         optional hosted deployment Β· not this repo          β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
                               β”‚
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β–Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚  Ratary Server          ← ontorata/ratary (this repo)       β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
         β”‚              β”‚              β”‚
         β–Ό              β–Ό              β–Ό
   @ratary/sdk    @ratary/cli   @ratary/mcp-server
   (SDK)          (CLI)         (Ratary MCP Β· npm)
         β”‚              β”‚              β”‚
         β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
                               β”‚
         β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
         β–Ό                     β–Ό                     β–Ό
   Ontorata MCP         Ontorata Studio          Ontory Runtime
   ontorata/ontorata-mcp ontorata/Ontorata-Studio  ontorata/ontory-runtime
   ecosystem product     ecosystem product         (ADR-2119; was ontorata/ontory)

Infrastructure (ships from ontorata/ratary β€” server plus client packages):

ComponentRepositoryRole
Ratary Serverontorata/rataryMemory engine β€” REST, persistence, Ratary MCP stdio. You run this.
Ratary SDKnpm @ratary/sdk Β· packages/sdkTyped REST client for Ratary Server.
Ratary CLInpm @ratary/cli Β· packages/cliOperator commands; delegates to Ratary SDK.
Ratary MCPnpm @ratary/mcp-server Β· stdio in repoMemory MCP β€” full stdio in clone Β· npm proxy for hosted REST.

Ecosystem products (separate repositories β€” connect to Ratary Server; not bundled here):

ProductRepositoryRole
Ontorata MCPontorata/ontorata-mcpEcosystem MCP gateway β€” Ratary MCP plus additional Ontorata tools.
Ontorata Studioontorata/Ontorata-StudioOperator UI β€” uses @ratary/sdk only.
Ontoryontorata/ontory-runtimeOntory Runtime β€” AI orchestration (ADR-2119). Legacy URL ontorata/ontory redirects.

Ratary Server does not depend on ecosystem product repositories.

Ratary MCP vs Ontorata MCP

Which MCP should I install?

Ratary MCPOntorata MCP
LayerRatary infrastructureOntorata ecosystem product
What it isOfficial memory protocol for Ratary ServerEcosystem gateway for Ontorata products
ScopeMemory β€” CRUD, search, context, graphRatary memory plus additional Ontorata tools
Repositoryontorata/ratary Β· npm @ratary/mcp-serverontorata/ontorata-mcp
Typical mcp.json keyrataryontorata

Use Ratary MCP for direct memory access. Use Ontorata MCP for one MCP entry point across the Ontorata stack. Both use Ratary Server as source of truth.


What Ratary is not

How is Ratary different from alternatives?

Vector DBMemory APIRAGAgent frameworkRatary
Primary jobSimilarity searchKey-value recallDocument Q&ATool orchestrationDurable AI memory
Structured knowledge & graphβŒβš οΈβŒβš οΈβœ…
MCP-native IDE integrationβŒβš οΈβŒβš οΈβœ…
Token-efficient context assemblyβŒβš οΈβŒβš οΈβœ…
Self-host & data sovereigntyβœ…βš οΈβš οΈβš οΈβœ…
Clear agent boundaryN/A⚠️N/A❌ bundledβœ… substrate only

Ratary complements your stack β€” it does not replace pgvector, LangGraph, or your agent of choice. See the Capability matrix for a feature-level comparison.

Why not just pgvector, Mem0, Letta, LangGraph, or RAG?
If you only use…You get…What you miss
pgvectorEmbedding similarityStructured memory, graph, MCP, context packing
Mem0Fast hosted memory APIFull self-host, hybrid retrieval, enterprise adapters
LettaAgent + memory bundledYour agent stays yours β€” Ratary is substrate, not runtime
LangGraphWorkflow & tool routingShared durable memory across sessions and clients
RAGDocument chunksEvolving memory β€” decisions, handoffs, relations

Visual architecture

How is Ratary Server structured internally?

This diagram shows the logical internal architecture of Ratary β€” how memory, knowledge, retrieval, and storage layers compose inside the platform. It is not a repository or product map.

        β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
        β”‚           Your AI applications           β”‚
        β”‚  Cursor Β· Claude Β· Agents Β· REST Β· MCP   β”‚
        β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
                             β”‚
                    MCP Β· REST Β· gRPC
                             β”‚
        β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β–Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
        β”‚     Ratary Server (logical layers)       β”‚
        β”‚  β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”‚
        β”‚  β”‚ Memory  β”‚ β”‚Knowledge β”‚ β”‚ Retrieval β”‚ β”‚
        β”‚  β””β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”˜ β””β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”˜ β””β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”˜ β”‚
        β”‚       β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜       β”‚
        β”‚         Context Β· Learning Β· Protocols   β”‚
        β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
                             β”‚
        β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β–Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
        β”‚     Pluggable storage (your choice)      β”‚
        β”‚  Postgres Β· Supabase Β· MariaDB Β· D1 Β· pgvector Β· Neo4j Β· β”‚
        β”‚  R2/S3/MinIO Β· OpenSearch Β· ClickHouse Β· …        β”‚
        β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

Search browses. Retrieval injects context. Embedding enriches asynchronously β€” never on the CRUD hot path.

Details: docs/ARCHITECTURE.md

For repository and product relationships (SDK, CLI, Ratary MCP, Ontorata ecosystem repos), see Ecosystem β€” a separate diagram, same platform, different perspective.


How Ratary works

What happens to a memory after you save it?

   Write          Enrich         Retrieve        Learn          Reuse
     β”‚               β”‚               β”‚              β”‚              β”‚
     β–Ό               β–Ό               β–Ό              β–Ό              β–Ό
  Save via       Summarize,      Rank & pack    Signals,       Same memory
  Ratary MCP/REST embed, link     context for    consolidate,   powers every
                 relations       your prompt    evolve         client
  1. Write β€” Persist memory through Ratary MCP or REST.
  2. Enrich β€” Summarize, embed, and relate β€” asynchronously.
  3. Retrieve β€” Assemble the smallest useful context slice.
  4. Learn β€” Optional signals and consolidation improve recall over time.
  5. Reuse β€” One brain across IDEs, agents, and APIs.

Core capabilities

What can Ratary Server do today?

Memory intelligence

Durable memories with summaries, codenames, favorites, archives, and handoffs. Version history with restore and merge β€” built for long-running work, not chat logs.

Knowledge

Semantic enrichment, relation linking, and graph traversal. Memory becomes navigable knowledge β€” not a flat pile of notes.

Retrieval

Hybrid search across SQL, vectors, lexical index, and graph. Separate browse from inject. Optional precision modes (hybrid, semantic, fulltext, title) when you need more control.

Reasoning support

Progressive retrieval, token budgets, and summary-first context assembly β€” typically ~85% fewer tokens than dumping full memory bodies into prompts.

Learning

Quality signals, consolidation, and compression β€” optional pipelines that improve the brain over time without retraining your model.

External agent support

Capability manifests, workspace scoping, and 28 Ratary MCP tools. External agents discover what the brain can do; Ratary never embeds agent reasoning β€” see What Ratary is not.

Platform

Pluggable adapters: choose SQL metadata (Postgres, Supabase, MariaDB/MySQL, D1, TiDB/Cockroach) plus optional pgvector, R2/S3/MinIO, Azure Blob, GCS, Meilisearch, OpenSearch, Neo4j, Redis, DuckDB, ClickHouse. Same application code for every backend.

Self-host stacks: docs/DOCKER.md β€” postgres or enterprise (MariaDB + MinIO + Redis) profiles.

Cloud & enterprise

Self-host, deploy to Vercel, or run a control plane with metering and federation. RBAC workspaces, audit trails, SSO, and policy hooks β€” opt-in when you need them.

Observability

OpenTelemetry, Prometheus metrics, SLO dashboards, and cost visibility for production brains.

Developer experience

OpenAPI, npm @ratary/sdk@1.1.0 Β· @ratary/cli@1.1.0 Β· @ratary/mcp-server@1.1.3 β€” and one-command IDE setup (npm run setup).

Knowledge fabric (opt-in)

Ingest from external systems of record β€” Notion (live on hosted prod), Confluence, Google Drive, SharePoint, and Teams connectors (code complete Β· enable per connector via env). Webhook HMAC, incremental sync, provenance on memories. Flags: KNOWLEDGE_FABRIC_ENABLED + CONNECTOR_SYNC_ENABLED. Guides: Knowledge fabric Β· Production enable Β· Phases 32–34.


Use cases

Who is Ratary for?

What you buildWhat Ratary provides
Developer AICoding assistants across IDEs and sessionsPersistent project memory, MCP tools, handoffs
Enterprise searchInternal knowledge discoveryHybrid retrieval over structured memory, not just files
Customer supportAI that handles ticketsDurable customer context without re-prompting every thread
Knowledge managementTeam second brainGraph-linked memories, codenames, relations, summaries
Autonomous agentsMulti-agent systemsShared memory layer with workspace and agent scoping
Personal AIPrivate assistant you ownSelf-hosted, exportable, sovereign data

Capability matrix

How does Ratary compare feature-by-feature?

For category positioning, see What Ratary is not.

CapabilityRataryVector DBMemory APIRAGAgent framework
Persistent structured memoryβœ…βŒβš οΈβŒβš οΈ
MCP-nativeβœ…βŒβš οΈβŒβš οΈ
Hybrid SQL + vector + graphβœ…βš οΈβš οΈβš οΈβš οΈ
Token-efficient context assemblyβœ…βŒβš οΈβŒβš οΈ
Knowledge graph & relationsβœ…βŒβš οΈβŒβš οΈ
Self-host sovereigntyβœ…βœ…βš οΈβš οΈβš οΈ
Agent boundary (bring your agent)βœ…N/A⚠️N/A❌
Enterprise storage adaptersβœ…βœ…βš οΈβš οΈβš οΈ

Documentation

Where do I read next?

Ratary Server (ontorata/ratary β€” this repository):

docs/GUIDE.mdSetup, daily usage, Ratary MCP configuration
docs/install/README.mdPer-harness MCP / plugin installation
docs/DOCKER.mdContainer & Compose self-host
docs/CONFIGURATION.mdEnvironment variables β€” what each flag does
docs/examples/MCP and IDE config templates
docs/ARCHITECTURE.mdSystem design and boundaries
MCP/README.mdRatary MCP β€” stdio and @ratary/mcp-server
packages/README.mdnpm packages β€” install, env, publish
.env.exampleEnv template β€” meanings in docs/CONFIGURATION.md
docs/PRODUCTION-ENABLE.mdHosted deploy β€” knowledge fabric on Vercel
docs/OPS-PRODUCTION-VERIFY.mdProduction ops checklist β€” npm run ops:verify-production
docs/MCP-CHATGPT-OAUTH.mdChatGPT MCP OAuth + Keycloak IdP runbook
docs/PHASES-32-34.mdUniversal fabric Β· Neptune Β· enterprise connectors
MCP/submission/directory-status.mdMCP directory listing status
docs/ENTERPRISE-MODULES.mdEnterprise flags (opt-in)
CHANGELOG.mdRelease notes and version map
docs/RATARY-VALIDATION-RUNBOOK.mdMaintainer validation β€” npm run ci:ratary-validation
SECURITY.mdVulnerability reporting

Canonical hosted API: https://ratary.ontorata.com (self-host uses your own base URL).

Ontorata ecosystem (separate repositories β€” not in this tree):

ontorata/ontorata-mcpOntorata MCP β€” ecosystem gateway
ontorata/Ontorata-StudioOntorata Studio β€” operator UI (setup)

Roadmap

What is shipping when?

Organized by direction β€” not sprints. Phases 1–31 are implemented in code (gates PASS); platform modules stay opt-in via env unless noted.

ThemesCodeOps (prod)Primary repository
Today (v1.0)Ratary MCP + REST, hybrid/graph retrieval, peer SQL, Docker, npm @ratary/sdk@1.1.0 Β· @ratary/mcp-server@1.1.3, remote MCP, Ontorata Studio. Platform (opt-in): knowledge fabric (Notion/Confluence/Drive/SharePoint/Teams live), universal memory fabric (Phase 32), Neptune traversal (Phase 33), federation, global intelligenceβœ…Partialontorata/ratary
Ops (now)Prod connector creds Β· MCP directory follow-ups Β· ChatGPT OAuth IdP (Keycloak)βœ…β³ontorata/ratary

Ops status (2026-07-19): Notion + fabric/federation flags on Vercel βœ… Β· D1 db:migrate βœ… Β· SDK codegen CI βœ… (workflow) Β· Confluence/Drive/SharePoint/Teams creds ⏳ (owner secrets) Β· Keycloak IdP ⏳ (auth.ontorata.com β†’ deploy Render; prod uses Smithery API-key mode until OAuth enabled) Β· MCP listings mostly Listed (directory-status.md). Verify: npm run ops:verify-production Β· OPS-PRODUCTION-VERIFY.md

Enterprise modules ship opt-in via environment flags on Ratary Server β€” defaults stay lean. See ENTERPRISE-MODULES.md and CONFIGURATION.md.


Vision

What is Ratary building toward?

Today every application has a database.

Tomorrow every AI will have a brain.

Ratary is building that layer β€” open, portable, self-hostable, and protocol-native. Not another chat wrapper. Not another vector dump. Infrastructure for persistent intelligence.

Knowledge should accumulate. Boundaries should be respected. Agents should stay coherent across time.

If you're building AI that lasts longer than a single prompt β€” build on Ratary.


Bring your model. Bring your agent. Ratary brings the brain.

Ratary Β· where AI remembers Β· Ontorata Β· MIT License


Contributing

How do I contribute?

Ratary Server (this repo): fork ontorata/ratary β†’ branch β†’ npm run lint && npm run build && npm test β†’ PR to ontorata/ratary.

Standard PR gate:

npm run lint && npm run build && npm test

Org-memory / recall changes (maintainers with .ai/ workspace): run the full gate before merge β€” see docs/RATARY-VALIDATION-RUNBOOK.md:

npm run ci:ratary-validation

Production ops changes (Vercel env, connectors, OAuth): see docs/OPS-PRODUCTION-VERIFY.md:

npm run ops:verify-production

Extended governance (.ai/ phases, ADRs) lives in the development mirror β€” optional for contributors; docs-only and standard PRs to ontorata/ratary are welcome without the mirror.

Ontorata MCP and Ontorata Studio accept contributions in their own repositories β€” not via this repo.

Questions: hello@ontorata.com

Related MCP Servers

modelcontextprotocol/server-memoryVerified

πŸ“‡ 🏠 - Knowledge graph-based persistent memory system for maintaining context

🧠 Knowledge & Memory2 views
0xshellming/mcp-summarizer

πŸ“• ☁️ - AI Summarization MCP Server, Support for multiple content types: Plain text, Web pages, PDF documents, EPUB books, HTML content

🧠 Knowledge & Memory0 views
20alexl/claude-engram

🐍 🏠 - Persistent memory and session intelligence for Claude Code. Auto-tracks mistakes, decisions, and context via hooks. Mines session history for patterns and cross-session search. Loop detection, pre-edit warnings, context compaction survival. Runs locally with Ollama.

🧠 Knowledge & Memory0 views
a2cr/a2cr

🐍 ☁️ 🏠 🍎 πŸͺŸ 🐧 - MCP server for AI-agent handoffs. Saves client-encrypted WorkBaton checkpoints and WorkStash notes so Codex, Claude Code, Roo Code, and other MCP clients can resume work without passing full chat history.

🧠 Knowledge & Memory0 views

Engagement

Views
0
Installs
0
Upvotes
0

Views and upvotes are unique per visitor network (hashed IP). Installs count copy actions.

Status

Health: Not checked yet

We have not completed a health check for this listing yet.

No check timestamp yet.

Unclaimed listing (imported or pending owner verification). Claim it β†’
β˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Claim this listing

Promote this listing

Optional paid placement. Free listings stay free forever.

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.