EveryDev.ai
Subscribe
Home
Tools

3,569+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2189
  • Coding1574
  • Infrastructure698
  • Marketing534
  • Projects498
  • Research456
  • Design416
  • Analytics389
  • Testing296
  • MCP290
  • Security286
  • Data262
  • Integration197
  • Prompts189
  • Communication183
  • Extensions173
  • Learning170
  • Voice151
  • Commerce135
  • DevOps123
  • Web86
  • Finance26
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. Open Index
    Open Index icon

    Open Index

    Agent Memory
    Featured

    Open-source structured context layer for AI agents that lets you build domain-specific, searchable knowledge graphs (brains) agents can read from and write to via MCP.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully free and open-source under the MIT License. Self-host locally or on your own infrastructure.

    Engagement

    Available On

    CLI
    API
    Web

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Agent MemoryMCP ServersContext Engineering

    Alternatives

    SegueHomunculusClaude Mem
    Developer
    DrDroidLabSan Francisco, CAEst. 2022

    Listed Aug 2026

    About Open Index

    Open Index is an open-source tool built by DrDroidLab for constructing domain-specific, structured context graphs — called "brains" — that AI agents can search, read, and update through an MCP server. Released under the MIT License, it is written in Python and available on GitHub. The project targets the gap between demo-quality agents and production agents that drift, stall, or act on stale context.

    What It Is

    Open Index is a context-layer engine for domain-specialized AI agents. Rather than feeding agents raw documents or unstructured retrieval results, it lets you define a typed, relational knowledge graph — a "brain" — and expose it to agents over the Model Context Protocol (MCP). The brain is domain-agnostic: you can model infrastructure (service → runbook), a sales pipeline (customer → order), a support org (product → issue), or any other domain by defining your own concepts and edges. Open Index stores, searches, and maps those concepts, and gives agents a validated path to both consume and maintain that knowledge.

    Four Primitives

    Every brain is built from four building blocks:

    • doc_type — a concept to track (e.g. service, customer, issue), defined as a YAML schema with typed fields, per-field search weights (boost), and optional relationship declarations.
    • doc_schema — the fields stored for a given doc_type, with data types (string, text, number, timestamp) and search kinds (syntactic, semantic, none).
    • entity — one instance of a doc_type, stored as JSON. Every entity can link to others via related_to + relationship_edge_meaning, forming a graph without requiring a graph database.
    • connector — an optional ingestion script that pulls entities from an MCP server on a schedule, enabling continuously-updated, connector-pulled data.

    MCP Integration and Agent Workflow

    The MCP server (open-index mcp) is the primary interface between a brain and an agent. It exposes read and write tools over stdio or HTTP:

    • Read: navigation_guidelines() injects domain-specific navigation instructions into the agent prompt; search_brain() and get_entity() retrieve context.
    • Write: put_entity(), put_entities(), and create_doc_type() let agents add or update knowledge, enabling self-learning loops where agents write back what they discover.
    • Read-only mode: --read-only restricts agents to retrieval only, suitable for query-only endpoints.

    The server also supports multi-brain deployments (open-index serve --brains <root>), serving every brain under a directory from one process, each at /<name>/mcp.

    Storage and Search Backends

    Open Index defaults to SQLite + FTS5 — zero external services, suitable for local development and brains up to roughly 10,000 entities. For larger or multi-writer deployments, it supports OpenSearch, which adds native per-field boosting, fuzzy (typo-tolerant) search, and k-NN semantic search. The backend is selected via brain.yaml or environment variables, so the same brain definition works in both environments.

    Semantic search is enabled by installing the [semantic] extra, which defaults to the BAAI/bge-small-en-v1.5 (384-D) local embedding model. An OpenAI-compatible embedding API can be substituted via environment variables.

    Explorer UI and Analytics

    open-index ui launches a local read-only explorer with four tabs: Explore (search and browse entities and their relationships), Map (auto-anchored graph visualization of the most-connected entities), Analytics (fetch counts by client/operation, zero-result searches, latency, and recent activity — stored locally and never sent externally), and Jobs (connector schedules and status). Analytics data lives in ~/.local/state/open-index/ and is not transmitted to the project's creators.

    Deployment and Production Path

    For shared or cloud deployments, open-index serve exposes the MCP context layer over streamable HTTP with bearer-token authentication. Docker Compose profiles (sqlite, opensearch, ui) are provided for containerized setups. The open-index mcp-config command prints the exact connection block to paste into Claude Code, Claude Desktop, Cursor, or any MCP-compatible agent host. A portable SKILL.md in skills/setup-open-index/ follows the agent skills format used by runtimes including OpenClaw, Hermes, and Claude Code, allowing agents to set up Open Index themselves.

    Current Status

    The repository was created in August 2026 and last pushed in mid-August 2026, indicating early active development. It carries 35 GitHub stars and 2 forks at the time of indexing, with zero open issues. The project is MIT-licensed and accepts community contributions via GitHub and Discord.

    Open Index - 1

    Community Discussions

    Be the first to start a conversation about Open Index

    Share your experience with Open Index, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Fully free and open-source under the MIT License. Self-host locally or on your own infrastructure.

    • Full CLI and MCP server
    • SQLite and OpenSearch backends
    • Explorer UI
    • Semantic search with local embeddings
    • Docker Compose deployment

    Capabilities

    Key Features

    • Build domain-specific knowledge graphs (brains) for AI agents
    • MCP server exposing read and write tools to agents
    • Four primitives: doc_type, doc_schema, entity, connector
    • Searchable entity graph with typed relationships (related_to edges)
    • SQLite + FTS5 backend (zero external services) and OpenSearch backend
    • Semantic search with local embeddings (BAAI/bge-small-en-v1.5) or OpenAI-compatible API
    • Per-field search boosting and hybrid keyword/semantic ranking
    • Self-learning loops: agents write back discovered knowledge via put_entity
    • Connector system for scheduled ingestion from MCP servers
    • Bulk import from JSON, JSONL, and CSV
    • Explorer UI with Explore, Map, Analytics, and Jobs tabs
    • Local context-fetch analytics (never sent externally)
    • Read-only MCP mode for query-only agent endpoints
    • Multi-brain serving from one process
    • Bearer-token authenticated HTTP serving for remote agents
    • Docker Compose profiles for SQLite and OpenSearch deployments
    • CLI with init, index, validate, search, ui, mcp, serve, and import commands
    • Portable SKILL.md for agent runtimes (OpenClaw, Hermes, Claude Code)
    • CI-friendly validate command for brain schemas and entities
    • File-backed (git-tracked) and index-backed (DB-owned) entity storage policies

    Integrations

    MCP (Model Context Protocol)
    Claude Code
    Claude Desktop
    Cursor
    OpenClaw
    Hermes
    OpenSearch
    SQLite
    Docker
    OpenAI-compatible embedding APIs
    API Available
    View Docs

    Demo Video

    Open Index Demo Video
    Watch on YouTube

    Ratings & Reviews

    No ratings yet

    Be the first to rate Open Index and help others make informed decisions.

    Developer

    DrDroidLab

    DrDroidLab builds open-source tooling for AI agent infrastructure, with Open Index as its structured context layer for domain-specialized agents. The organization extracted Open Index from production work on agent systems at scale. DrDroidLab maintains an active community on Discord and GitHub, welcoming contributions across connectors, example brains, and backend integrations.

    Founded 2022
    San Francisco, CA
    14 employees

    Used by

    Palo Alto Networks
    WorkIndia
    TrueFoundry
    Stanza Living
    +2 more
    Read more about DrDroidLab
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    Segue icon

    Segue

    Segue lets you save context from one AI assistant and load it in another using a short, memorable handle — no copy-paste or re-explaining required.

    Homunculus icon

    Homunculus

    Homunculus is an open-source agent memory and context engineering tool for managing AI agent state and configuration.

    Claude Mem icon

    Claude Mem

    A memory management system for Claude AI that enables persistent context and conversation history across sessions.

    Browse all tools

    Related Topics

    Agent Memory

    Memory layers, frameworks, and services that enable AI agents to store, recall, and manage information across sessions. These tools provide persistent, semantic, and contextual memory for agents, supporting personalization, long-term context retention, graph-based relationships, and hybrid RAG + memory workflows.

    126 tools

    MCP Servers

    Model Context Protocol servers that extend AI capabilities.

    188 tools

    Context Engineering

    Techniques for optimizing context windows to improve AI responses.

    53 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions