Skip to main content
Glama
Alpha-W0lf

AI Knowledge Base MCP Server

by Alpha-W0lf

AI Knowledge Base

Keep coding agents current with local hybrid RAG + MCP.

Public demo uses synthetic fixtures; the architecture is the product.

Sources → transcripts → RAG + MCP → agents

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]
  1. Ingest documents (committed fixtures for the public demo).

  2. Embed locally (Ollama nomic-embed-text).

  3. Retrieve with vector + keyword fusion, optional cross-encoder.

  4. Serve results via CLI and read-only MCP tools (search, discover, get_context, get_status).

Key engineering decisions

  1. Hybrid fusion before cross-encoder — the retrieval spine stays useful if the reranker degrades or is disabled.

  2. Public fixtures / private corpus split — strangers get a working demo; personal tip libraries stay off this repo.

  3. 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.eval

MCP wiring, discovery commands, and optional BYO YouTube overlay: GETTING_STARTED.md.

Stack

Component

Tool

Vector + FTS

LanceDB

Embeddings

Ollama · nomic-embed-text @ 768

Rerank (optional)

MiniLM cross-encoder (degrades to fusion)

Agent surface

MCP (public profile = read-only)

Deeper docs

Building agent knowledge systems? Reach me on LinkedIn.

Install Server
A
license - permissive license
B
quality
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • F
    license
    A
    quality
    D
    maintenance
    Enables 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
  • F
    license
    Not graded
    quality
    C
    maintenance
    Hybrid semantic search (dense vector + BM25) over local knowledge bases and codebases, exposed as MCP tools for AI agents to search and list knowledge bases.
  • A
    license
    Not graded
    quality
    A
    maintenance
    Read-only local-first MCP server enabling AI assistants to semantically search private Markdown, PDF, and Tika-backed knowledge bases without data upload.
    45
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    Enables 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

View all related MCP servers

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.

View all MCP Connectors

Latest Blog Posts

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