vecbase-labs

Open Research KB

Community vecbase-labs
Updated

A generic MCP server for building and querying local PDF knowledge bases with DuckDB-backed evidence retrieval.

Open Research KB

Open Research KB is a local-first MCP server for building and querying PDF knowledge bases. It indexes PDFs into DuckDB, exposes evidence-grounded retrieval tools, and helps agents separate corpus-backed answers from independent reasoning.

Features

  • Ingest searchable PDF files into local DuckDB knowledge bases.
  • Manage multiple named databases with db_name.
  • Search chunks with conservative answerability labels: supported, related_only, and not_found.
  • Retrieve source chunks, page text, and rendered page images for citation checks.
  • Audit independent reasoning against closed-corpus profiles with check_reasonable.
  • Keep PDFs and generated indexes local; repository data directories are ignored by default.

Quick Start

Install dependencies:

npm install

Run the MCP server over stdio:

npm run kb-mcp-ts

Add a PDF:

npm run create-document -- '{"pdf_path":"<path-to-book.pdf>","title":"Book Title","authors":["Author"],"tags":["book"],"ocr":"auto"}'

Run the optional smoke test with any searchable sample PDF:

KB_MCP_SMOKE_PDF=<path-to-sample.pdf> npm run smoke:pdf

Codex MCP Setup

Add the server to your Codex MCP config:

[mcp_servers.kb]
command = "npm"
args = ["--prefix", "/path/to/ResearchKB", "run", "--silent", "kb-mcp-ts"]

A fresh install starts with a default database named default, stored at data/index/kb_default.duckdb. Use create_db if you want additional databases such as research_corpus or textbook_corpus.

Common Workflow

  1. Add PDFs with create_document or ingest_pdf.
  2. Search the corpus with search or search_terms.
  3. Inspect source evidence with get_chunk, get_page_text, or get_page_image.
  4. Answer from the corpus only when answerability.status is supported.
  5. If evidence is weak or missing, label any independent reasoning clearly and use check_reasonable when a closed corpus profile should constrain the answer.

Tools

Tool Purpose
create_db Create a named DuckDB knowledge base, optionally ingesting a PDF file or directory.
list_db List available databases and their profiles.
set_active_db Set the session default database.
create_document Add one searchable PDF with stricter defaults for user-facing ingestion.
ingest_pdf Ingest a local PDF into a selected database.
list_documents List indexed documents with optional title/path/tag filters.
search Search chunks and return answerability metadata.
search_terms Two-stage search workflow for technical/domain natural-language questions.
check_reasonable Check whether independent reasoning stays within a selected corpus scope.
build_technical_index Preview or build extracted technical-term results.
search_technical_results Search extracted technical-term results and nearby definitions.
get_chunk Fetch one chunk with optional neighbors and page image.
get_page_text Return extracted text for one PDF page.
get_page_image Render or fetch a cached page image.

See docs/tool-reference.md for full input and output schemas.

Evidence Policy

Open Research KB is intentionally conservative. A lexical hit is not automatically enough to answer a question.

Status Meaning Recommended agent behavior
supported Direct textual evidence was found. Answer from cited evidence.
related_only Weakly related material was found, but it is not enough to support the answer. Report the limitation before independent reasoning.
not_found No usable evidence was found. Ask before using independent reasoning.

Storage

Runtime data is local and ignored by Git:

data/index/      DuckDB databases and database catalog
data/pdfs/       optional local PDF staging area
data/rendered/   cached page images
data/test_outputs/

Each database is a separate DuckDB file, for example data/index/kb_default.duckdb. The original PDFs are not copied into the repository during ingestion; their source paths are stored in the database metadata. Page images are generated on demand and cached under data/rendered.

Install Poppler (pdftotext, pdfinfo, pdftoppm) before ingestion. OCR is optional and uses local Tesseract when configured.

Development

npm run typecheck
npm run test:unit

The repository intentionally excludes generated PDFs, images, DuckDB files, rendered pages, logs, local environments, and node_modules.

MCP Server · Populars

MCP Server · New

    bibinprathap

    veritasgraph

    VeritasGraph — open-source Knowledge Graph & GraphRAG framework on GitHub. Build multi-hop reasoning, ontology-aware retrieval, and verifiable attribution over your own data. Nodes, edges, RDF, linked-data — runs locally or in the cloud.

    Community bibinprathap
    sher1096

    KLinePic MCP Server and Agent API Examples

    MCP server and OpenAPI examples for AI agents that turn broker and exchange fills into annotated KLinePic trade-review charts

    Community sher1096
    zerx-lab

    FluxDown

    Rust 驱动的多协议下载管理器,支持 HTTP/FTP/BitTorrent 磁力链接及 HLS/DASH 流媒体,智能多线程加速与浏览器无缝集成。精美界面,极致性能,永久免费,零广告。

    Community zerx-lab
    MasihMoafi

    Project Elpis:

    You put an agent into an Elpis, and it becomes Elpis; Be Elpis my friend.

    Community MasihMoafi
    ROCTUP

    1C Metacode MCP Server

    MCP сервер с встроенным AI агентом для поиска по графу метаданных и кода конфигураций 1С

    Community ROCTUP