AI Knowledge Base MCP Server
A read-only MCP server for searching and browsing a local AI knowledge base powered by hybrid vector + full-text retrieval. It exposes four tools:
search(query, limit, hybrid)— Perform semantic or hybrid (vector + FTS → RRF fusion → optional cross-encoder rerank) searches. Supports configurable result limits and hybrid mode toggle. Results citesource_id/source_url, never raw filepaths.discover(mode, days, limit)— Browse content without a specific query using four non-ranking modes:digest— Recent items over a configurable time window (default: last 7 days)random— Random content explorationconcepts— Top mentioned terms via heuristic extractionchannels— Content grouped by source channel
get_context(query, include_recent)— Retrieve comprehensive context for a query, optionally appending a recent digest for broader situational awareness.get_status()— Check knowledge base statistics (document counts, tracked channels) and Ollama/embedding service health.
Note: Mutation tools (
add_channel,sync_now) are not available on the public profile — this server is strictly read-only unless the private env flagAI_KB_MCP_PRIVATE=1is set locally.
Allows ingestion of YouTube video transcripts from configured channels, enabling semantic and hybrid search over their content.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@AI Knowledge Base MCP Serversearch for 'hybrid retrieval' concepts"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
AI Knowledge Base
Keep coding agents current with local hybrid RAG + MCP.
Public demo uses synthetic fixtures; the architecture is the product.

The problem
AI techniques move weekly. Coding agents that only “know” last quarter’s defaults fall behind. Teams need a local, citable knowledge path — retrieve what matters, cite sources, and expose tools agents can call — without shipping a private corpus to the public internet.
How it works
flowchart LR
F[Fixtures / sources] --> I[Ingest + embed]
I --> D[(LanceDB)]
Q[Query] --> S[Hybrid search]
D --> S
S --> M[CLI / MCP tools]
M --> A[Coding agents]Ingest documents (committed fixtures for the public demo).
Embed locally (Ollama
nomic-embed-text).Retrieve with vector + keyword fusion, optional cross-encoder.
Serve results via CLI and read-only MCP tools (
search,discover,get_context,get_status).
Key engineering decisions
Hybrid fusion before cross-encoder — the retrieval spine stays useful if the reranker degrades or is disabled.
Public fixtures / private corpus split — strangers get a working demo; personal tip libraries stay off this repo.
MCP read-only by default — mutations stay behind an explicit private profile flag.
Try it
uv sync
ollama pull nomic-embed-text
uv run python -m src.ingest --fixtures
uv run python -m src.search "reciprocal rank fusion RRF" --hybrid --db data/lancedb
uv run python -m src.evalMCP wiring, discovery commands, and optional BYO YouTube overlay: GETTING_STARTED.md.
Stack
Component | Tool |
Vector + FTS | LanceDB |
Embeddings | Ollama · |
Rerank (optional) | MiniLM cross-encoder (degrades to fusion) |
Agent surface | MCP (public profile = read-only) |
Deeper docs
docs/PORTFOLIO_VISION.md— packaging intentdocs/ARCHITECTURE.md— contracts / howGETTING_STARTED.md— operator pathFAQ.md— Technical FAQdocs/2026-07-12_ce_keep_note.md— cross-encoder keep noteLICENSE— MIT
Building agent knowledge systems? Reach me on LinkedIn.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- FlicenseAqualityDmaintenanceEnables AI agents to query a local knowledge graph built from document collections using hybrid search (BM25 + vector fusion) and entity-relationship extraction. Supports privacy-first, offline operation with tools for semantic search, entity graph exploration, and corpus statistics.3
- AlicenseNot gradedqualityAmaintenanceRead-only local-first MCP server enabling AI assistants to semantically search private Markdown, PDF, and Tika-backed knowledge bases without data upload.45MIT
- AlicenseNot gradedqualityBmaintenanceEnables fully local retrieval over a personal document corpus via hybrid search, cross-encoder reranking, RAPTOR summaries, and knowledge graph queries, served to AI agents over MCP.MIT
Related MCP Connectors
Search your knowledge bases from any AI assistant using hybrid RAG.
Agentic search over your Dewey document collections from any MCP-compatible client.
Securely search and manage workspace context files for AI agents and teams.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Alpha-W0lf/ai-knowledge-base-public'
If you have feedback or need assistance with the MCP directory API, please join our Discord server