OokCite MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@OokCite MCP ServerVerify this DOI: 10.1038/nphys1170"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
OokCite MCP Server
Give MCP-capable tools the ability to validate DOIs, format citations, manage bibliography collections, and catch fabricated references. Returns citation metadata only -- not PDFs or full-text articles. Works with clients that support MCP servers over standard input and output.
Quick Start
One command to install and configure:
npx @turtletech/ookcite-mcp setupThis auto-detects supported MCP clients and writes the configuration for you. Add an API key for higher rate limits and collection tools:
npx @turtletech/ookcite-mcp setup --key YOUR_API_KEYNo API key required for basic usage (20 lookups/day). Sign up for more.
After changing MCP config, restart the client or reload its MCP servers. Many clients do not hot-reload environment-variable changes for already-running stdio servers.
Related MCP server: cite-rag-mcp
Install (Alternative Methods)
npm (recommended):
npm install -g @turtletech/ookcite-mcpcargo-binstall (fastest, no Node.js):
cargo binstall ookcite-mcpcargo install (from source):
cargo install ookcite-mcpPre-built binaries: Download from GitHub Releases for Linux (x86_64, aarch64), macOS (x86_64, aarch64), and Windows.
Configure
If you used setup, you're done. Otherwise, add to your MCP client config:
{
"mcpServers": {
"ookcite": {
"command": "npx",
"args": ["-y", "@turtletech/ookcite-mcp"]
}
}
}With an API key:
{
"mcpServers": {
"ookcite": {
"command": "npx",
"args": ["-y", "@turtletech/ookcite-mcp"],
"env": {
"OOKCITE_API_KEY": "your_key_here"
}
}
}
}If you installed globally (npm install -g or cargo install), you can use
"command": "ookcite-mcp" directly instead of npx.
Keeping the key out of the config file
npm/scripts/ookcite-mcp-credential-helper fetches the key at launch and execs the
server, so the config names a command instead of holding a secret:
{
"mcpServers": {
"ookcite": {
"command": "/path/to/ookcite-mcp-credential-helper",
"env": {
"OOKCITE_API_KEY_COMMAND": "pass show services/ookcite-api-key"
}
}
}
}It also takes OOKCITE_API_KEY_FILE for a plain file, and OOKCITE_API_KEY
still wins if it is already set. With none of them the server starts anonymous.
Write your own wrapper instead and two things will bite, both of which present as the server hanging rather than as a credential error:
Anything run before
execinherits stdin, which belongs to the client. A helper that reads stdin consumes theinitializerequest; the server then waits for a message that is already gone until the client gives up. Redirect every command from/dev/null.A secret store can block indefinitely. gpg asks for a passphrase over its own agent socket, which
</dev/nulldoes not reach, so a locked key parks the launch on a prompt the client never shows. Bound the lookup well inside the client's connect timeout;OOKCITE_API_KEY_TIMEOUTdefaults to 10 seconds.
Consult your client's MCP documentation for its configuration-file location.
Use the mcpServers.ookcite JSON above when automatic setup is unavailable,
then restart the client or reload its MCP servers.
Optional env (stdio MCP, all clients):
Variable | Purpose |
| Higher rate limits + collection tools (optional for basic lookup/format) |
| Override API base URL (default |
|
|
|
|
|
|
| Credential helper only: command printing the key on stdout |
| Credential helper only: file whose first line is the key |
| Credential helper only: seconds to allow the lookup (default 10) |
MCP usage tips
Prefer batch tools (
verify_references,batch_format,batch_add_to_collection,import_bibliography) over many single-citation calls.Collection mutations require
OOKCITE_API_KEY. Destructive tools (delete_collection,remove_from_collection,unshare_collection) are annotated for clients that honor MCP tool hints.The server writes diagnostics to stderr only on the MCP path; stdout is reserved for JSON-RPC.
Tools
Lookup & Validation
Tool | Purpose |
| Check if a DOI exists (anti-hallucination) |
| Look up a book by ISBN |
| Find a paper from messy citation text |
| Resolve many citation strings in one request (max 50) |
| Corpus search with author / category / citation facets |
| Check API availability and health |
Formatting
Tool | Purpose |
| Format a DOI in any of 2900+ CSL styles |
| Batch-check a list of DOIs |
| Format multiple citations at once |
| Find CSL style IDs by name |
| Page through the full CSL style list |
| Generate grouped in-text markers (e.g. [1-3]) |
Account
Tool | Purpose |
| Plan in effect plus daily (and monthly) lookups remaining |
ORCID
Tool | Purpose |
| Find ORCID profiles by name, affiliation, or ORCID ID |
| Fetch one ORCID profile by ID |
| Index an ORCID profile's publications so they are searchable |
Collections (requires sign-in)
Collections are a signed-in feature. Set OOKCITE_API_KEY to use these tools.
Tool | Purpose |
| List saved citation collections |
| Add a citation (by DOI or free-text) |
| Add multiple citations at once |
| Import BibTeX/RIS files into a collection |
| Export collection as BibTeX |
| Search within a collection; returns |
| Check for duplicates; returns |
| Delete a collection |
| Update name, description, or style |
| Remove an entry by |
| Correct a saved entry's title, authors, year, DOI, … |
| Merge two entries of one collection into one |
| Set tags on a collection |
| Reorder entries |
Typical workflow:
Keep
references.biborlibrary.bibunder version control in your projectImport that file into an OokCite collection with
import_bibliographyUse
search_collection,check_duplicates, andexport_collectionwhile revisingTreat the collection as an audit/export companion, not the only copy of your bibliography
Removing a single entry: call search_collection (or check_duplicates) to
see each hit as entry_id: … (and optionally aliases: doi:… when the stored id
is opaque). Pass that entry_id to remove_from_collection, or pass the paper's
bare DOI / doi:10.x/y — the server resolves aliases locally before the API call.
Sharing & Collection Operations
Tool | Purpose |
| Create a shareable link |
| Revoke sharing |
| View a shared collection by token |
| Merge multiple collections |
| Move entries between collections |
Sharing is available to signed-in accounts with collections. Free accounts can import and batch-add within their daily quota. Merge and batch-move require an Academic or Business plan.
Utilities
Tool | Purpose |
| Better BibTeX-style keys for a list of DOIs |
| Expand a journal abbreviation to its full name |
| Re-render BibTeX or RIS as canonical BibTeX |
These three require an Academic or Business plan.
Plans & Pricing
Tier | Price | Lookups/day | API calls/month | Collections | Entries/collection |
Anonymous | Free | 20 | -- | 0 | -- |
Free | Free | 60 | -- | 4 | 200 |
Academic | EUR 4/mo | 20,000 | 10,000 | 10 | 1,000 |
Business | EUR 10/mo | 20,000 | 40,000 | 20 | 4,000 |
Re-lookups can be served without quota use when collection metadata is already available to the API. A retrieval that has to resolve the paper again can count against the current plan's quota. Paid Academic checkout is intended for students, researchers, and educators at accredited institutions; a verified ORCID can also qualify a signed-in account for Academic limits.
Anti-Hallucination
Add this to your system prompt:
Before citing any paper, use validate_doi to confirm the reference exists. If validation fails, do not include the citation.
For revision workflows, add:
Keep the project bibliography in a local
.bibfile under version control. Use OokCite collections for verification, deduplication, and export.
How It Works
The MCP server connects to the public OokCite API to look up and format citations. It's a thin MCP wrapper around the OokCite REST API with no local database, and no heavy dependencies.
Sign up for a free account (60 lookups/day), or upgrade to Academic (EUR 4/mo) or Business (EUR 10/mo) for higher monthly API limits, larger collections, paid utilities, merge, and batch-move.
Source layout
The crate is a thin MCP (stdio) wrapper around the public OokCite REST API. There is no local citation database; all state lives on the API.
Path | Role |
| Binary entry: |
| Startup probes (validate |
|
|
|
|
| Tool argument structs ( |
| API base URL, package version, reverse-lookup confidence threshold |
|
|
| Collection entry ids, bare DOI / |
| Reverse-lookup and free-text resolve payload helpers |
| Endpoint registry ( |
| Library root (exports |
| Decrypts |
| Age-encrypted OpenAPI snapshot + |
|
|
| Asciinema recording scripts |
| Cocogitto pre-bump hook: |
Collections / entry ids: search_collection and check_duplicates emit
entry_id: … lines. remove_from_collection accepts that id, a bare DOI, or
doi:10.x/y (resolved locally in collection_entries before the DELETE call).
Release: tag v* runs .github/workflows/release.yml (multi-arch GitHub
Release assets, crates.io, npm). Version bumps use cocogitto
(cog.toml + scripts/set-version.sh).
Why server.rs is large: rmcp's #[tool_router] / #[tool] macros keep
handlers on one impl Server. Further file splits without macro workarounds
add little user value; peel tests or add small helpers (resolve_many, shared
Me type) before fighting the macro.
Contributing / local checks
cargo test --bin ookcite-mcp # unit tests (no contract key needed)
cargo build --release
./target/release/ookcite-mcp --version
# Contract tests (optional locally; required in CI with secret):
export OOKCITE_CONTRACT_KEY=$(pass show turtletech/ookcite-contract-key)
cargo test --test api_contractLive MCP smoke (optional; needs OOKCITE_API_KEY): add/search/remove with a
bare DOI on a throwaway collection, then delete_collection.
Documentation
License
MIT. see LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityDmaintenanceMCP server for verifying academic citations via Semantic Scholar, OpenAlex, and CrossRef.1MIT
- Flicense-qualityBmaintenanceA local MCP server for evidence-safe academic citation workflows, including verified-reference retrieval, Zotero duplicate detection and import, and Word export via Pandoc with zotero.lua.
- Alicense-qualityCmaintenanceAn MCP server for managing pandoc/CSL-YAML bibliographies and verifying citations in documents.17GPL 3.0
- AlicenseAqualityAmaintenanceMCP server for downloading academic papers from DOI or title, resolving references, and generating citations. Supports batch downloads, multiple mirrors, and optional Unpaywall integration.2111MIT
Related MCP Connectors
The everything Zotero MCP server — Web API v3 + local API, safe writes, citations, search.
Remote MCP server for full read/write access to a Zotero library
MCP server for Altmetric APIs - track research attention across news, policy, social media, and more
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/TurtleTech-ehf/ookcite-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server