MCPedia
MCP server for a content-first knowledge base, enabling AI agents to search (full-text, semantic, hybrid) and retrieve Markdown documents, list content, and find related docs.
README
MCPedia
A content-first knowledge base — readable as Markdown/MDX in Git, queryable by humans via a Web UI and by AI agents via the Model Context Protocol (MCP).
MCPedia keeps content as plain Markdown files under content/. A Git-tracked
source of truth, indexed into PostgreSQL (metadata + a tsvector full-text
column) and served through a single Core layer that every interface
(Web, MCP) shares — no business logic duplicated per surface.
Monorepo layout
mcpedia/
├── apps/
│ ├── web/ # Next.js 16 (Turbopack) — human-facing docs UI + search
│ ├── mcp/ # MCP server (stdio) — AI-agent interface (tools + resources)
│ └── api/ # Hono + tRPC v11 API on :4020 (+ /hooks/* git-sync webhooks)
├── packages/
│ ├── types/ # shared domain types (DocSection, Document, SearchHit, ...)
│ ├── config/ # loads .env (repo root) as authoritative dev config
│ ├── db/ # Drizzle ORM schema + client + drizzle-kit config
│ ├── parser/ # frontmatter (gray-matter) parsing
│ ├── search/ # Postgres FTS query (ts_rank + ts_headline)
│ ├── embeddings/ # embedding provider + chunker
│ ├── queue/ # Redis (ioredis) + BullMQ worker/queue (Phase 3)
│ └── core/ # Document/Content/Search/Index/Revision — the only business logic
├── content/ # docs/ writeups/ research/ notes/ (the knowledge base)
└── scripts/ # indexer.ts (full reindex), enqueue.ts (one-shot job enqueue)
Architecture principle
Web ─┐
├──► Core ──► Repository (@mcpedia/db) ──► PostgreSQL
MCP ─┘
All interfaces go through @mcpedia/core. Nothing outside packages/db and
packages/core touches the database directly.
Quick start
bun install # install workspace deps
cp .env.example .env # set DATABASE_URL (dev uses imrnes Postgres :6432)
bunx turbo run build # typecheck + build every package
bun run index # walk content/ -> upsert into Postgres
bun --cwd apps/web run dev # Web UI on :3000
bun run mcp # MCP server on stdio (pipe to an MCP client)
Database
Schema is defined in packages/db/src/schema.ts (documents with a weighted
search_vector tsvector + GIN index, and document_chunks with an embedding real[]).
The pgvector extension is not available on the shared imrnes Postgres, so
semantic search stores vectors as real[] and ranks by in-app cosine similarity.
Migrations live in packages/db/drizzle/. They were applied manually via psql
(drizzle-kit push is unreliable under PgBouncer transaction pooling); to
re-apply on a fresh DB:
psql $DATABASE_URL -f packages/db/drizzle/0000_grey_toro.sql
psql $DATABASE_URL -f packages/db/drizzle/0001_document_chunks.sql
Note: on imrnes (PgBouncer
:6432) a leakedDATABASE_URLshell var can shadow.env.@mcpedia/configloads.envlast so the repo config always wins for local/dev.
Content
Each Markdown file carries YAML frontmatter:
---
id: websocket-contract
title: WebSocket Contract
type: documentation
tags: [typescript, websocket, rpc]
status: published
author: asep
created_at: 2026-08-19
updated_at: 2026-08-19
---
slug = relative path under content/ (e.g. docs/websocket/contract). The
body shown in the UI is always read from the on-disk file (source of truth);
the DB stores metadata + the search vector.
MCP tools
| Tool | Purpose |
|---|---|
search_documents |
Postgres FTS over the corpus (ranked + snippet) |
semantic_search |
Embedding/cosine search over chunked content |
hybrid_search |
FTS + semantic fused via RRF |
get_document |
Full markdown body by slug |
list_documents |
List, optionally filtered by section |
get_related_documents |
Docs sharing tags with a given slug |
MCP Resources
| URI | Purpose |
|---|---|
mcpedia://docs |
List all published documents |
mcpedia://docs/{+slug} |
Full markdown body (read from disk) |
mcpedia://docs/{+slug}/chunks |
Preview of embedded semantic chunks |
mcpedia://docs/{+slug}/revisions |
Revision history summary |
({+slug} uses RFC 6570 reserved expansion so a slug like
docs/websocket/contract matches the template.)
Smoke test (in-memory transport, real JSON-RPC):
bun --cwd apps/mcp run smoke
API (Phase 2 + Phase 3)
A tRPC v11 API is exposed via Hono on :4020 (all procedures mirror the MCP tools). Phase 3 adds async job + revision procedures and git-sync webhooks:
bun run api # http://localhost:4020 (GET /health, POST/GET /trpc/*)
tRPC procedures: search, semanticSearch, hybridSearch, getDocument,
listDocuments, related (Phase 2); plus revisions, getRevision,
restoreRevision, jobStatus, queueStatus (Phase 3).
Git-sync webhooks (enqueue BullMQ jobs; the worker processes them):
POST /hooks/reindex— full-corpus reindex (point your Git provider's push webhook here to auto-reindex on push).POST /hooks/index?slug=<slug>— reindex a single document.
Security: both webhooks require an
x-webhook-secretheader that matchesWEBHOOK_SECRET(set in.env). The API refuses to start ifWEBHOOK_SECRETis unset, so the hooks are never left open.
bun run index now also chunks + embeds (Phase 2 indexer) and snapshots a
revision whenever the body changes (Phase 3). See .env.example for
EMBED_* / REDIS_* / QUEUE_PREFIX / WEBHOOK_SECRET vars.
Run as a supervised service (Phase 4)
deploy/mcpedia-api.service + deploy/mcpedia-worker.service are systemd units
(Restart=on-failure, EnvironmentFile=.env, WorkingDirectory=/home/code/mcpedia).
Enable them with:
sudo cp deploy/*.service /etc/systemd/system/
sudo systemctl daemon-reload
sudo systemctl enable --now mcpedia-api mcpedia-worker
# tail logs
journalctl -u mcpedia-api -u mcpedia-worker -f
The API should sit behind Caddy (or your reverse proxy) for TLS; expose only
:4020 internally and the web app publicly.
Status
Phase 1 — MVP (DONE): monorepo, Core, Web UI (home/doc/search), MCP server, Postgres FTS keyword search, content indexing.
Phase 2 — Semantic + API (DONE): embeddings provider (OpenRouter via 9router),
chunked document_chunks, semanticSearch + hybridSearch (RRF), tRPC/Hono API
(apps/api, :4020), MCP semantic_search/hybrid_search tools, web hybrid toggle.
Phase 3 — Async + Scale (DONE): Redis + BullMQ background indexing/embedding
workers (packages/queue, apps/worker), git-sync webhooks (POST /hooks/*),
document revision system (document_revisions + restore), and MCP Resources
(mcpedia://docs/...). See PHASES.md.
pgvector is not installed on the shared imrnes Postgres, so vector storage is a
real[]column with in-app cosine similarity (instant at KB scale). pgvector is the Phase-4 scale-out path. SeePHASES.md.
See PHASES.md for Phase 3–4 (Redis/BullMQ, auth, revisions, scale-out).
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。