Scholar Engine MCP
High-speed Scientific Literature Semantic Compiler & FastMCP Server Powered by arXiv, OpenAlex, DuckDB HTTP range queries, and TypeSafe Jev System One.
Documentation
Scholar Engine MCP π¬β‘
High-speed Scientific Literature Semantic Compiler & FastMCP Server
Powered by arXiv, OpenAlex, DuckDB HTTP range queries, and TypeSafe Jev System One.
π‘ Why Scholar Engine?
Traditional Retrieval-Augmented Generation (RAG) relies on dense vector similarity (cos(query, chunk)). Vector similarity is great for answering "what text looks like my query?", but fundamentally fails on structural, empirical scientific questions, such as:
"Which published paper experimentally proved loaded latency reduction on real fixed wireless hardware without requiring Wi-Fi 6 PHY?"
Vector search will return dozens of papers full of simulation equations or theoretical surveys that merely mention "wireless" and "latency" thousands of times.
Scholar Engine rethinks scientific discovery for AI agents by combining:
- Zero Storage Bloat: Queries Hugging Face's 3.15M
arxiv-completeParquet dataset directly using DuckDB HTTP range queries. No need to download a 16 TB PDF corpus. - Citation Graph Enrichment: Instantly pulls citation metrics and author graphs via OpenAlex.
- Probabilistic Semantic Gates (Jev System One): Natural language questions compile into persistent, 154ms probabilistic predicates (e.g.
P_real_hardware > 0.85,P_empirical > 0.75). - Materialized Predicate Cache: Evaluated predicates are cached in SQLite bitmaps so subsequent runs reuse past judgments with zero inference cost.
- Double Jev Gate (Pre-RAG & Post-RAG):
- Pre-RAG: Discards non-empirical or irrelevant papers before reading full text.
- Post-RAG: Verifies every claim synthesized by the reasoning agent against extracted evidence passages (
supported,partial,unsupported,contradicted).
π Comparison Matrix
| Feature | Scholar MCP | Traditional ArXiv MCP | PaperQA2 | Elicit / Consensus |
|---|---|---|---|---|
| Primary Interface | Local FastMCP Server | Local MCP | Python library / CLI | Web App / Closed SaaS |
| Search Speed | Sub-second to ~3s | ~1-2s | 30s - 90s | ~5s |
| Query Cost | <$0.001 (or $0 simulation) | Free (Rate-limited API) | $1.00 - $5.00+ / run | Monthly Subscription |
| Full-text LaTeX Access | Yes (DuckDB HTTP Range) | β (Abstract only) | Yes (Downloads full PDFs) | Proprietary Index |
| Semantic Predicate Filtering | Yes (Jev System One) | β None | β None | Heuristic filters |
| Predicate Bitmaps Cache | Yes (SQLite) | β None | β None | β None |
| Claim-Evidence Verification | Yes (Post-RAG Verifier) | β None | Yes (Heavy LLM loop) | Simple score |
| Agent Tool Support | Claude, Cursor, Codex, AGY | Partial | β None | β None |
ποΈ Architecture
flowchart TD
subgraph INGESTION["1. Zero-Storage Discovery"]
ARXIV["arXiv Atom API (Search & Metadata)"]
OPENALEX["OpenAlex Graph API (Citations & Authors)"]
HF["Hugging Face arxiv-complete (3.15M Papers)"]
DUCKDB["DuckDB HTTP Range Scanner (Targeted LaTeX fetch)"]
HF --> DUCKDB
end
subgraph ENGINE["2. Scholar Semantic Engine"]
DISCOVER["Candidate Retrieval Engine"]
ARXIV --> DISCOVER
OPENALEX --> DISCOVER
DUCKDB --> DISCOVER
subgraph GATES["Jev System One Gates"]
PRE_RAG["Pre-RAG Gate (P_empirical, P_applicable)"]
POST_RAG["Post-RAG Verifier (Claim vs Evidence)"]
PRED_CACHE[("SQLite Predicate Cache & Bitmaps")]
end
DISCOVER --> PRE_RAG
PRE_RAG <--> PRED_CACHE
PRE_RAG --> POST_RAG
POST_RAG <--> PRED_CACHE
end
subgraph MCP_INTERFACE["3. FastMCP Server Interface"]
TOOL_SEARCH["scholar_search (Fast paper discovery)"]
TOOL_INSPECT["scholar_inspect (Deep paper metrics & OpenAlex)"]
TOOL_RESEARCH["scholar_research (Full autonomous loop)"]
end
ENGINE --> MCP_INTERFACE
MCP_INTERFACE --> CLIENTS["AI Agents: Claude Desktop, Cursor, Codex, Antigravity"]
π Quick Start
1. Installation
# Clone the repository
git clone https://github.com/wolverin0/scholar-mcp.git
cd scholar-mcp
# Install dependencies (or install in a virtual environment)
pip install -e .
2. Configuration (.env)
Copy .env.example to .env:
cp .env.example .env
# Optional: TypeSafe Jev API Key for live 154ms System One probabilistic decisions
# If unset, Scholar Engine automatically runs in high-fidelity deterministic simulation mode!
TYPESAFE_API_KEY=your_typesafe_key_here
3. Run Tests
Verify everything is working locally:
pytest -v
π€ MCP Server Setup
Add Scholar Engine to your favorite agentic tools:
Claude Desktop (claude_desktop_config.json)
{
"mcpServers": {
"scholar": {
"command": "python",
"args": ["-m", "scholar.mcp.server"],
"env": {
"TYPESAFE_API_KEY": "your_key_here"
}
}
}
}
Cursor (.cursor/mcp.json)
{
"mcpServers": {
"scholar": {
"command": "python",
"args": ["-m", "scholar.mcp.server"]
}
}
}
Antigravity / Wezbridge (.mcp.json)
{
"mcpServers": {
"scholar": {
"type": "stdio",
"command": "python",
"args": ["-m", "scholar.mcp.server"]
}
}
}
π οΈ FastMCP Tools Reference
1. scholar_search
Quickly search arXiv for scientific papers by topic, keyword, or title, with optional publication year filtering.
- Arguments:
query(str): Search topic or keywords (e.g."loaded latency wifi").limit(int, default=5): Number of candidates to return.year_min(int, optional): Minimum publication year (e.g.2022).year_max(int, optional): Maximum publication year (e.g.2026).
- Returns: Structured JSON list of IDs, titles, categories, abstracts, and PDF links.
2. scholar_inspect
Inspect a paper in detail by its arXiv ID. Merges OpenAlex citation metrics, authors, and stored semantic predicates.
- Arguments:
paper_id(str): arXiv paper ID (e.g."2007.07174"or"2306.04338").
- Returns: Full abstract, categories, citation counts, DOI, OpenAlex ID, and cached semantic features.
3. scholar_verify_claim
Verifies an empirical or scientific claim against a specific paper's full abstract/text. Extracts the most salient evidence passage with exact character offsets (start_char, end_char, source_field, doc_id).
- Arguments:
claim(str): Specific empirical proposition (e.g."Method achieves sub-5ms latency under load").paper_id(str): Paper ID to verify against.
- Returns: Status (
supported,contradicted,unsupported), probability score, provenance source (livevsheuristic), and exact evidence spans with character offsets.
4. scholar_verify_predicate
Directly evaluates a boolean or probabilistic proposition against any state or text passage using TypeSafe Jev System One semantics.
- Arguments:
state_text(str): Evidence or text passage to evaluate.question(str): Proposition question (e.g."Does this passage report an in-vivo experiment?").
- Returns: Probability in
[0.0, 1.0], latency in ms, and provenance (livevsheuristic).
5. scholar_research
Autonomous scientific discovery loop:
- Discovers candidates on arXiv.
- Runs Jev System One semantic gatekeeper to filter out non-empirical or incompatible papers.
- Resolves citation graphs and verifies claims against evidence text with exact spans.
- Arguments:
query(str): Research question or engineering topic.domain(str, default="general"): Domain hint (e.g."wireless","databases","ai").threshold(float, default=0.50): Minimum probability score required to pass semantic gates.limit(int, default=10): Max candidates to evaluate.
- Returns: Surviving evidence-backed papers with confidence metrics, exact evidence spans, and screened-out audit breakdown.
ποΈ Tri-Model AI Architectural Consensus (Claude, Codex, Gemini)
Scholar Engine's v1.1 architecture was refined and audited through a structured 3-round AI debate among the frontier LLM families:
- Anthropic Claude (Fable 5.1 / Opus tier): Systems safety, span-level character tracking, and CI regression harness.
- OpenAI Codex (GPT 6 Astra / Codex tier): 3-stage verification pipeline (
Retrieval -> Extraction -> Assessment), bounded MCP safety, and parameter isolation. - Google Gemini (Gemini 3.8 Flash / Gemini 2.5 tier): Context-aware metadata facets, audit trails for retractions, and multi-model resilience.
Read the full unedited debate logs and architectural roadmap:
- π Complete 3-Round Transcript (32 KB)
- π Authoritative Architectural Synthesis & Roadmap (12 KB)
π§ͺ CI Evaluation Harness & Test Suite
Scholar Engine includes a comprehensive 50-benchmark evaluation harness in tests/test_eval_harness.py:
- Span Offset Integrity: Verifies that extracted evidence spans match exact string slices in source documents.
- Contradiction Detection: Tests active refutation and negation detection.
- Insufficient Evidence Abstention: Validates that unrelated papers yield abstentions rather than false positives.
- Adversarial Resilience: Tests resistance against prompt injection in untrusted academic text (e.g., instructions attempting to override verification thresholds).
- Provenance Demarcation: Guarantees that every claim explicitly declares its source (
liveAPI vsheuristicfallback).
Run the full test suite:
python -m pytest tests -v
π» CLI Usage
You can also use Scholar Engine directly from your terminal:
# Search arXiv papers
scholar search "neural network verification" --limit 5
# Inspect a paper with OpenAlex citation metrics
scholar inspect "1711.00455"
# Run the autonomous semantic research loop
scholar research "wireless loaded latency scheduler" --threshold 0.50 --limit 10
π License
MIT License. See LICENSE for details.