astra-knowledge-base-mcp
Provides a persistent, searchable knowledge base using PostgreSQL with tsvector full-text search and optional pgvector for embeddings.
Provides a persistent, searchable knowledge base using SQLite with FTS5 for full-text search and automatic content chunking.
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., "@astra-knowledge-base-mcpsearch my knowledge bases for 'API authentication'"
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.
astra-knowledge-base-mcp
MCP (Model Context Protocol) server for managing and searching multi-tenant knowledge bases.
Part of Astra AI Agent Infrastructure
Overview
Astra Knowledge Base MCP provides AI agents with persistent, searchable knowledge bases backed by PostgreSQL 16+ with pgvector — hybrid full-text and vector search, plus SAG (SQL-Retrieval Augmented Generation) for relational reasoning across chunks.
Each knowledge base is an isolated namespace. Content is auto-chunked on ingestion (recursive, heading-anchor, or semantic splitting), embedded via any OpenAI-compatible endpoint, and indexed for three complimentary retrieval paths.
Related MCP server: agent-memory
Prerequisites
Python 3.11+
uv — Python package manager (
pip install uv)PostgreSQL 16+ with pgvector — installation guide: pgvector.org
Setup
1. Configure PostgreSQL
Create the database and enable pgvector:
CREATE DATABASE astra_kb;
\c astra_kb
CREATE EXTENSION IF NOT EXISTS vector;2. Install dependencies
uv sync3. Configure environment
# Embedding endpoint (any OpenAI-compatible API)
export ASTRA_EMBED_BASE_URL=https://api.siliconflow.cn/v1
export ASTRA_EMBED_API_KEY=sk-...
export ASTRA_EMBED_MODEL=Qwen/Qwen3-VL-Embedding-8B
export ASTRA_EMBED_DIM=1024
# Optional: LLM endpoint for SAG extraction
export ASTRA_LLM_BASE_URL=https://api.siliconflow.cn/v1
export ASTRA_LLM_API_KEY=sk-...
export ASTRA_LLM_MODEL=THUDM/GLM-Z1-9B-0414
# PostgreSQL connection
export ASTRA_KB_PG_DSN=dbname=astra_kb user=postgres host=/run/postgresql4. Start
uv run server.pyConfiguration
Variable | Default | Description |
|
| Backend — PostgreSQL only |
|
| PostgreSQL connection string |
| — (required) | OpenAI-compatible embedding endpoint |
| — | Embedding API key (optional for local models) |
|
| Embedding model (supports VL for text+image) |
|
| Embedding vector dimension |
| — (required for SAG) | LLM endpoint for event/entity extraction |
| — | LLM API key |
|
| LLM model for extraction |
No hardcoded provider defaults.
ASTRA_EMBED_BASE_URLandASTRA_LLM_BASE_URLmust be set explicitly. The oldSILICONFLOW_API_KEYfallback has been removed — useASTRA_EMBED_API_KEYorASTRA_LLM_API_KEYinstead.
Usage
MCP Tools
Tool | Description |
| List all knowledge bases with enable/disable status |
| Create a new empty knowledge base |
| Permanently delete a knowledge base and all its content |
| Toggle KB visibility in search |
| Add text content (auto-chunked + embedded) |
| Update a chunk (replace or append mode) |
| Delete a single chunk by ID |
| List chunks in a knowledge base (paginated) |
| Search across KBs — modes: |
| Extract events and entities from unprocessed chunks (SAG indexing) |
| Import a file (PDF, DOCX, PPTX, TXT, MD) via MarkItDown |
| Import chunks from a JSONL file |
| Export all chunks to JSONL |
| Knowledge base statistics and overview |
| Track chunk changes over time |
| List mgmt schema tables (services, health_log, api_keys) |
| Query operational data from mgmt tables |
Registering in Hermes Agent
Add to your Hermes config.yaml:
mcp_servers:
astra-knowledge-base:
command: /path/to/astra-knowledge-base-mcp/scripts/run.sh
enabled: trueThen restart Hermes Agent. The tools become available automatically.
Architecture
AI Agent (Hermes)
│ MCP stdio protocol
▼
astra-knowledge-base-mcp (Python, uv run)
│
├── PostgreSQL (psycopg2 + pgvector) → astra_kb
│ ├── kb_registry ← KB metadata & status
│ ├── kb_*.chunks ← Per-KB schema (tsvector FTS + vector(1024))
│ ├── kb_*.events ← SAG event index (vector(1024))
│ ├── kb_*.entities ← SAG entity index (vector(1024))
│ └── mgmt ← Operational data (services, health_log, api_keys)
│
└── Embedding cache (PostgreSQL) → embed_cache tableThree complimentary retrieval paths:
FTS — keyword search via PostgreSQL
tsvector/ts_rankVector — semantic search via cosine similarity on
pgvectorindexesSAG — SQL-Retrieval Augmented Generation: event-entity extraction + query-time hyperedge expansion for multi-hop reasoning across chunks
Agent Guide
See AGENTS.md for AI-agent-oriented documentation (entry points, workflows, Hermes integration).
Related
astra-aiagent-infra — ecosystem portal
Hermes Agent — AI agent framework
MCP — Model Context Protocol
Dependencies
PostgreSQL 16+ with pgvector — primary data store
psycopg2-binary — PostgreSQL driver
MarkItDown — file import (PDF, DOCX, PPTX)
Retrieval Strategy
We implement SAG (SQL-Retrieval Augmented Generation) — an original retrieval architecture that replaces both traditional RAG and GraphRAG. SAG uses event-entity indexing and query-time dynamic hyperedges to deliver both semantic retrieval and relational reasoning in a single pipeline.
Reference:
SAG paper: arxiv 2606.15971 — Yuchao Wu et al., Zleap AI (MIT)
Reference implementation: github.com/Zleap-AI/SAG — MIT License
Our implementation follows the SAG algorithm directly on our PostgreSQL/pgvector infrastructure, without wrapping the reference package.
License
MIT — see LICENSE.
中文版
概述
Astra Knowledge Base MCP 为 AI Agent 提供基于 PostgreSQL 16+ + pgvector 的持久化、可搜索知识库——支持混合全文/向量检索和 SAG(SQL 检索增强生成)关联推理。
每个知识库是隔离的命名空间,内容引入时自动分块(递归、heading-anchor 或语义切分),通过任意 OpenAI 兼容的端点进行向量化,并建立三种互补的检索路径。
Minimal setup:
export ASTRA_EMBED_BASE_URL=https://api.siliconflow.cn/v1
export ASTRA_EMBED_API_KEY=sk-...
uv run server.pyMaintenance
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
- Alicense-qualityDmaintenanceLocal MCP server for indexing personal knowledge into SQLite with hybrid search, chunk-level citations, memory tools, and agent orchestration.Last updated4MIT
- Alicense-qualityCmaintenanceMCP server providing persistent memory management for AI agents using SQLite and FTS5, enabling storage, full-text search, and recall of memories with namespace isolation.Last updated1MIT
- AlicenseAqualityBmaintenanceA local-first MCP server for durable agent memory using SQLite and FTS5, enabling knowledge graph storage, search, and recall for AI agents.Last updated201MIT
- Alicense-qualityDmaintenanceA SQLite-backed MCP memory server providing persistent memory storage with full-text search and knowledge graph capabilities for AI assistants.Last updated35MIT
Related MCP Connectors
Local-first RAG engine with MCP server for AI agent integration.
Agent-native MCP server over the public saagarpatel.dev corpus. Read-only, stateless.
User-owned memory for AI agents, Copilot, Claude, IDEs, CLIs, and chat apps over remote MCP.
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/alrcatraz/astra-knowledge-base-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server