source-pack-mcp
An MCP server that builds structured research source packs for a topic, extracting verified facts, quotes, numbers, dates, and primary links with a coverage map of claims across sources.
README
source-pack-mcp
An MCP server that produces a structured research source pack for a topic or question. Instead of an agent rummaging through search results and raw pages, it returns verified-at-source facts, quotes, key numbers, dates, primary links, and a coverage map of what's been said — as clean structured data.
What a source pack looks like
{
"pack_id": "uuid",
"query": "string",
"created_at": "ISO timestamp",
"sources": [
{
"url": "string",
"title": "string",
"domain": "string",
"retrieved_at": "ISO timestamp",
"facts": [{"fact": "string", "confidence": "high|medium|low"}],
"quotes": [{"text": "string", "context": "string"}],
"numbers": [{"value": "string", "unit": "string", "context": "string"}],
"dates": [{"date": "string", "event": "string"}],
"primary_links": ["string"]
}
],
"coverage_map": [
{"claim": "string", "mentioned_by": ["domain"], "contested_by": ["domain"], "status": "consistent|contested|isolated"}
],
"limitations": ["string"]
}
Facts are extracted from actually-fetched sources, with the URL attached and a confidence label. The server never invents facts and never claims verification it didn't perform. coverage_map compares claims across sources: consistent, contested, or isolated.
Tools
| Tool | Purpose |
|---|---|
pack_build |
Build a source pack for a query (max_sources, search_depth). |
pack_add_source |
Add a specific URL to an existing pack for extraction. |
pack_get |
Retrieve a previously built pack by id. |
pack_list |
List recent packs (id, query, created_at, source count). |
pack_search |
Keyword search across previously built packs. |
Features
- HTML → clean text via real DOM extraction (Mozilla Readability + Turndown), never regex parsing
- Disk cache with TTL (default 1 hour)
- robots.txt respect, rate-limited fetching (~1 req/sec)
- Packs persisted as JSON in a configurable data dir (
.packs/) - Streamable HTTP (default
127.0.0.1:3225) + stdio transports - No API keys required, no auth needed for public content, no personal data
Quick start
Requirements: Node.js 22+
npm ci
npm run build
PORT=3225 node dist/src/http.js
Configure with env vars (see .env.example):
| Var | Default | Purpose |
|---|---|---|
SITE_BASE_URL / MAX_SOURCES_PER_PACK |
8 | Max sources per pack |
FETCH_TIMEOUT_MS |
15000 | Per-request fetch timeout |
FETCH_MIN_INTERVAL_MS |
1000 | Rate limit between fetches |
SEARCH_API_URL |
unset | Optional JSON search API; falls back to HTML search |
CACHE_TTL_SECONDS |
3600 | Page cache TTL |
PACKS_DIR |
.packs/ |
Where packs are stored |
PORT |
3225 | HTTP port |
Register in any MCP client:
{
"mcpServers": {
"source-pack": {
"command": "node",
"args": ["/path/to/source-pack-mcp/dist/src/http.js"],
"env": { "PORT": "3225" }
}
}
}
Development
npm run check # typecheck + lint + build + test
npm test # run tests
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.