The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Bibverify listing page.
Verify bibliographic existence and metadata consistency without destructive edits.
Chinese · Install · Quick start · MCP · Development
Bibverify is a BibTeX metadata verification tool for researchers, editors, automation, and AI assistants. It starts with exact DOI, PMID, PMCID, or arXiv identifiers and then scores candidates from title, author, year, venue, and pagination evidence.
Bibverify evaluates whether a bibliographic record can be located in the queried sources and whether its metadata agrees. It does not prove that research findings are true, data is authentic, or a venue is reputable. A missing database record is not evidence that a reference is fabricated. By default, the source .bib file is never overwritten.
identifier_conflict instead of being hidden by title search.abstract, keywords, file, note, and custom fields that providers do not return; conflicting persistent identifiers are never overwritten automatically.Retry-After support for 429/5xx responses.GitHub Actions tests all three operating systems across all four supported Python versions.
The current published release is v0.3.0. This branch prepares v0.4.0; commands marked v0.4.0 become usable only after their linked npm, GHCR, or GitHub Release artifact has been published.
Run without a permanent installation:
Starting with v0.4.0, Node.js users can use the zero-dependency npm launcher. It downloads the
matching native release, verifies SHA256SUMS, and forwards every argument and exit code:
For a persistent CLI in an isolated Python environment, use uv tool or pipx:
Inside a virtual environment, regular pip also works:
Each release also provides smoke-tested native packages on GitHub Releases. Beginning with v0.4.0, the release matrix covers Windows x64 plus macOS and glibc 2.28+ Linux on both x64 and ARM64. musl-based Linux users should use the Python package or container image. Windows ARM64 is not published natively yet because an MCP runtime dependency does not currently provide Windows ARM64 wheels; npm automatically uses the tested x64 build under Windows 11 emulation, or you can use the ARM64 container instead.
The same release publishes a multi-architecture container:
Package-manager manifests are generated from the final release bytes, not from unverified build inputs. Homebrew, Scoop, and WinGet are not live catalog entries yet: v0.4.0 will attach submission- ready manifests to GitHub Release, after which each external catalog still requires onboarding or review. See Distribution channels for rollout status.
For a machine-readable response:
.bib fileCreate a starter configuration:
Place references.bib next to the configuration and run:
You can override the input and output paths from the command line:
Inspect results without writing any file:
After reviewing the report, explicitly apply high-confidence field updates. Bibverify creates a byte-for-byte backup first:
PowerShell example:
The v0.2 forms remain available for compatibility, although new scripts should use subcommands:
A minimal configuration looks like this:
See config_template.json for every commonly used option.
Path behavior is intentionally predictable:
bib_file and output_dir values are resolved from the directory containing config.json, not the shell's current directory.output_dir is omitted, output is written next to the input bibliography.encoding: "auto" tries UTF-8 with BOM, UTF-8, and GB18030. It does not fall back to Latin-1 and silently turn unknown bytes into mojibake.Keys can be stored in a local configuration, but environment variables are safer and harder to commit accidentally:
| Environment variable | Used for |
|---|---|
BIBVERIFY_EMAIL | Crossref polite pool and contact information |
BIBVERIFY_OPENALEX_API_KEY | OpenAlex |
BIBVERIFY_SEMANTIC_SCHOLAR_API_KEY | Semantic Scholar |
BIBVERIFY_PUBMED_API_KEY | PubMed/NCBI |
BIBVERIFY_CORE_API_KEY | CORE |
PowerShell:
Bash or Zsh:
connect_timeout and read_timeout separately bound connection setup and response reads; the compatibility timeout field remains available. match_threshold controls automatic candidate acceptance, ambiguous_threshold controls which plausible candidates enter review, and auto_update_threshold is an additional gate for field changes. Higher values are more conservative. Relative cache paths are resolved from the config directory.
The official bioRxiv details route does not provide arbitrary title search. Bibverify therefore calls bioRxiv only for an exact 10.1101/... DOI and leaves title-only discovery to providers whose contracts support it, such as Crossref and Europe PMC.
Exit codes:
| Code | Meaning |
|---|---|
0 | Verification completed and metadata is consistent |
1 | Runtime error reserved for uncategorized command failures |
2 | Metadata differences or high-confidence updates exist |
3 | Ambiguous, not-found, or identifier-conflict entries require review |
4 | A provider was unavailable and verification is incomplete |
5 | The input file, configuration, or entry is invalid |
With --json, stdout contains JSON only. Diagnostics go to stderr, which keeps the command safe for CI and scripts.
For an input named references.bib, Bibverify may create:
bibverify_report_<timestamp>.<format>: complete states, candidates, provider errors, confidence, and field provenance in txt, json, jsonl, or csv.references_backup_<timestamp>.bib: byte-for-byte copy of the source.references_updated_<timestamp>.bib: complete bibliography after non-destructive merging; omitted when nothing changes.references_review_<timestamp>.bib: ambiguous, not-found, unavailable-source, identifier-conflict, or invalid entries; omitted when nothing needs review.The report-level complete value is true only when every entry completed verification. A rate-limited or unreachable provider makes it false even if another source found a candidate. Each field_diffs record includes original/suggested values, source, confidence, normalized equivalence, action, and reason.
Each output can be disabled independently through output_settings. --dry-run overrides those settings and performs zero writes. The default command only writes proposals; only --apply changes the source after a backup.
Static priority is only the starting point:
identifier_conflict.Unpaywall is currently treated as open-access enrichment, not as a primary bibliographic metadata provider. Provider states distinguish matched, no_match, ambiguous, rate_limited, auth_error, network_error, parse_error, provider_error, and skipped.
Bibverify uses the official MCP Python SDK and supports local stdio and Streamable HTTP transports.
Start a stdio server:
MCP client configuration:
The npm launcher can be used directly by Node-oriented MCP clients:
Containerized stdio MCP keeps the current directory as the only writable workspace:
Start Streamable HTTP:
MCP treats the configuration directory as its workspace root by default. It rejects config or .bib reads outside that root and blocks report, cache, or update writes outside it. Broaden access only by explicitly setting --workspace-root when starting the server. The official MCP SDK handles protocol negotiation, schemas, structured results, progress, and cancellation.
Available tools:
doi_to_bibtexrank_lookup_sourcesexplain_update_diffverify_bib_fileGenerate setup files for Codex, Claude, Cursor, or a generic MCP client:
| Channel | Command or artifact | Availability |
|---|---|---|
| PyPI | python -m pip install bibverify | Published |
| uv | uvx bibverify or uv tool install bibverify | Published |
| pipx | pipx install bibverify | Published |
| npm | npx --yes @hylouis233/bibverify | Planned for v0.4.0; not published yet |
| pnpm / Bun | pnpm dlx @hylouis233/bibverify / bunx --bun @hylouis233/bibverify | Planned for v0.4.0; not published yet |
| GHCR | docker pull ghcr.io/hylouis233/bibverify:0.4.0 | Planned for v0.4.0; not published yet |
| Native | Windows x64; macOS and glibc 2.28+ Linux x64/ARM64 | Planned for v0.4.0; not published yet |
| Homebrew | Release asset bibverify.rb | Submission manifest planned for v0.4.0; catalog not live |
| Scoop | Release asset bibverify.json | Submission manifest planned for v0.4.0; catalog not live |
| WinGet | Release assets Hylouis233.Bibverify*.yaml | Submission manifests planned for v0.4.0; catalog not live |
| MCP Registry | io.github.Hylouis233/bibverify | Published discovery metadata; install through one of the package entries above |
The npm package is a small launcher rather than a second implementation. The verification engine
remains the same Python codebase across PyPI, npm, native packages, and containers. Release assets
include SHA256SUMS; npm verifies the selected binary before execution, and Homebrew, Scoop, and
WinGet manifests pin the same release hashes.
from bib_check import BibTeXChecker remains compatible during the 0.3 release line, but new code should use the package import above.
After activating the environment:
CI tests Windows, macOS, and Linux on Python 3.11–3.14, including provider fixtures, golden write-safety tests, lint, typing, coverage, the offline benchmark, dependency auditing, Python and npm package builds, a container smoke test, and a CycloneDX SBOM. GitHub Actions are pinned to commit SHAs, while the MCP Publisher is version-pinned and SHA-256 verified. PyPI and npm use Trusted Publishing with provenance attestations, and GHCR publishes multi-architecture images with an SBOM and build provenance.
benchmarks/cases.json is a small offline regression set covering short-title false positives, DOI conflicts, preprint title variants, Unicode/LaTeX, and fabricated author combinations. It is not a complete scientific evaluation and its scores must not be interpreted as real-world performance ceilings. Contributions of broader, redistributable, human-labeled cases are welcome.
If Bibverify supports your research, please cite: