Skip to main content
Glama
melvenac

Open Brain Knowledge MCP Server

by melvenac

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

No arguments

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
kb_recallA

Search across all indexed sessions, stored knowledge, and session summaries. Returns ranked results. By default, results are scoped to the project you specify — always pass your current working directory as project for best results. Set global: true to search across all projects. Global knowledge (stored without a project) is always included regardless of scope.

kb_indexA

Index a specific session .db file into the persistent knowledge base. Supports incremental updates — if the session was already indexed but has new events, only the new data is processed.

kb_reindexA

Scan the sessions directory and index any new or updated session .db files. Incremental by default — only processes sessions with new events. Use force to rebuild everything.

kb_statsA

Show statistics about the persistent knowledge base — sessions, chunks, tags, stored knowledge, summaries, and disk usage.

kb_pruneA

Remove sessions older than their TTL (default 90 days). Returns count of pruned sessions.

kb_storeA

Store a piece of knowledge in the brain. Use for facts, notes, preferences, or anything worth remembering permanently. By default, knowledge is stored globally (available across all projects). Set scope to 'project' and pass your working directory as project_dir to scope it to a specific project.

kb_forgetC

Remove a piece of stored knowledge by ID or key.

kb_listA

List all manually stored knowledge entries. Pass your working directory as project to see only global + project-scoped entries.

kb_summarizeA

Returns session chunks for the calling agent to summarize. The agent should read the chunks, write a concise summary (3-8 sentences covering what was worked on, key decisions, errors resolved, files changed, and outcome), then call kb_store_summary to save it. No API key needed — YOU are the summarizer.

kb_store_summaryA

Store a session summary generated by the calling agent. Use this after kb_summarize returns session chunks and you have written a summary.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.9/5.0

Scored across 10 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: forget, index list, prune, recall, reindex, stats, store, store_summary, and summarize. Even similar operations like kb_index and kb_reindex are differentiated (single file vs. batch scanning). No ambiguity.

Naming Consistency5/5

All tools follow the 'kb_verb[_noun]' pattern consistently. Underscore snake_case is used throughout. The verbs are appropriate and mostly single-word except 'store_summary', which is still clear and consistent.

Tool Count5/5

10 tools is well-scoped for a knowledge base management server. They cover essential operations without being excessive or too sparse.

Completeness4/5

The tool set covers creating, retrieving, updating (via reindex/incremental indexing), searching, listing, forgetting, and pruning. A minor gap: there is no explicit tool to update or delete a stored summary, but the workflow allows overwriting through kb_store_summary.

Maintenance

ActivityInactive
ResponsivenessNo issues