Keyless evidence gathering
The core gather_bundle workflow searches and extracts public sources without making an API key the entry ticket.
Research the web as inspectable evidence—or produce a cited report with your model.
Sibyl is a web-research MCP, CLI, and Python library. Its keyless path returns a typed SourceBundle with passage provenance and explicit insufficiency states; its optional model-backed path synthesizes the evidence into a cited report.
HOW IT WORKS
Gather public-web candidates without requiring a search API key for the core retrieval path.
Turn pages into compact, ranked passages that retain URLs, offsets, identifiers, and content hashes.
Cluster syndicated copies so repeated text is not mistaken for multiple independent sources.
Return a typed SourceBundle with diagnostics and an explicit sufficient, partial, or insufficient state.
DESIGN
The interface is useful because it exposes what happened, where confidence comes from, and where the system stops—not because an agent produced a confident paragraph.
The core gather_bundle workflow searches and extracts public sources without making an API key the entry ticket.
Citation IDs, character offsets, source URLs, and hashes let downstream agents inspect the exact evidence they received.
content_cluster_id groups syndicated or substantially duplicated material instead of counting domains alone.
Typed status and diagnostics make missing, partial, or low-quality support visible instead of quietly filling the gap.
Use the same retrieval layer from an MCP host, a terminal workflow, or directly inside a Python application.
A configured language model can turn the evidence bundle into a cited report; retrieval remains useful without one.
QUICK START
Then ask your MCP host to gather evidence for a question. The keyless path returns structured sources even when no synthesis model is configured.
$ python -m pip install sibyl-research
$ claude mcp add sibyl -- uvx --from sibyl-research sibyl-mcpVERIFIABLE SCOPE
The 8/8 result is a deterministic lexical retrieval evaluation, not a claim that the live web is complete or always correct. The source-quality baseline separately reports 83.3% selective accuracy at 75% coverage.
HONEST BOUNDARIES
FAQ
No for its core public-web retrieval path. Optional providers and model-backed report synthesis may have their own credentials, but structured evidence gathering is designed to work keylessly.
No. Its primary product is a typed evidence bundle. A configured model can synthesize that bundle into a cited report, but downstream agents can also inspect or compose from the evidence directly.
Not necessarily. Sibyl clusters substantially duplicated or syndicated content so repeated copies can be recognized as one underlying line of support.
No. Sufficiency describes whether the retrieval contract found enough usable evidence for the requested task. It does not replace source criticism or factual judgment.
OPEN SOURCE