Skip to main content
Glama
vecbase-labs

Open Research KB

by vecbase-labs

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.

Related MCP server: Hoard

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.

A
license - permissive license
-
quality - not tested
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.

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/vecbase-labs/Open-Research-KB'

If you have feedback or need assistance with the MCP directory API, please join our Discord server