MCP server for OokCite citation validation and formatting
- ✓Open-source license (MIT)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Topics declared
- ✓Documented (README)
- !README contains suspicious pattern: eval\s*\(
claude mcp add ookcite-mcp -- npx -y @turtletech/ookcite-mcp{
"mcpServers": {
"ookcite-mcp": {
"command": "npx",
"args": ["-y", "@turtletech/ookcite-mcp"]
}
}
}Resumen de MCP Servers
# OokCite MCP Server
[](LICENSE)
[](https://crates.io/crates/ookcite-mcp)
[](https://www.npmjs.com/package/@turtletech/ookcite-mcp)
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:
```bash
npx @turtletech/ookcite-mcp setup
```
This auto-detects supported MCP clients and writes the configuration for you.
Connect an OokCite account for higher rate limits and collection tools without
putting an API key in shell arguments or MCP configuration:
```bash
npx @turtletech/ookcite-mcp setup --connect
```
The command opens the TurtleTech dashboard, creates or activates the Free plan,
stores the issued key in the platform credential store, and writes only a
credential reference to detected clients. Use `setup --connect --device` on a
headless machine.
An existing API key remains supported:
```bash
npx @turtletech/ookcite-mcp setup --key YOUR_API_KEY
```
No API key required for basic usage (20 lookups/day).
[Sign up](https://my.turtletech.us/signup?service=ookcite&source=ookcite_mcp) 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.
## Install (Alternative Methods)
**npm** (recommended):
```bash
npm install -g @turtletech/ookcite-mcp
```
**cargo-binstall** (fastest, no Node.js):
```bash
cargo binstall ookcite-mcp
```
**cargo install** (from source):
```bash
cargo install ookcite-mcp
```
**Pre-built binaries**: Download from
[GitHub Releases](https://github.com/TurtleTech-ehf/ookcite-mcp/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:
```json
{
"mcpServers": {
"ookcite": {
"command": "npx",
"args": ["-y", "@turtletech/ookcite-mcp"]
}
}
}
```
With an API key:
```json
{
"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
`setup --connect` uses the platform credential store by default. It refuses to
replace an existing platform credential or named OokCite MCP configuration
unless `--replace-credential` or `--replace-config` is given explicitly.
A generic credential manager can be used instead. The store command receives
the new key on standard input; it must not expect the key in a command-line
argument. The retrieval command prints the key on standard output when the MCP
server starts:
```bash
npx @turtletech/ookcite-mcp setup --connect \
--store-command "credential-cli store ookcite" \
--retrieve-command "credential-cli read ookcite"
```
For an explicit owner-only file instead of a credential manager:
```bash
npx @turtletech/ookcite-mcp setup --connect \
--credential-file "$HOME/.config/ookcite/api-key"
```
The file is created with owner-only permissions and is never overwritten. The
platform, helper-command, and file forms put references such as these in client
configuration:
```json
{
"mcpServers": {
"ookcite": {
"command": "npx",
"args": ["-y", "@turtletech/ookcite-mcp"],
"env": {
"OOKCITE_API_KEY_COMMAND": "credential-cli read ookcite"
}
}
}
}
```
At startup, source precedence remains `OOKCITE_API_KEY`,
`OOKCITE_API_KEY_COMMAND`, `OOKCITE_API_KEY_FILE`, then the platform credential
reference. With none of them the server starts anonymous. `setup --key` remains
available for existing deployments that intentionally keep the key in client
configuration.
Credential retrieval obeys two constraints:
- Retrieval receives closed standard input, so it cannot consume MCP JSON-RPC.
- Retrieval is bounded by `OOKCITE_API_KEY_TIMEOUT`, which defaults to 10
seconds, and its output is never copied into diagnostics.
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 |
| -------- | ------- |
| `OOKCITE_API_KEY` | Higher rate limits + collection tools (optional for basic lookup/format) |
| `OOKCITE_API` | Override API base URL (default `https://ookcite-api.turtletech.us`) |
| `OOKCITE_MCP_READ_ONLY` | `1` hard-disables collection mutations (review / CI automation) |
| `OOKCITE_MCP_ALLOW_MUTATE` | `0` denies mutations; unset or `1` allows (API key still required server-side) |
| `OOKCITE_STARTUP_PROBES` | `1` runs auth + npm update checks on **stderr** before accepting MCP connections (default off for faster connect) |
| `OOKCITE_API_KEY_COMMAND` | Command printing the key on stdout; stdin is closed |
| `OOKCITE_API_KEY_FILE` | Owner-protected file whose first line is the key |
| `OOKCITE_API_KEY_TIMEOUT` | Seconds allowed for credential retrieval (default 10) |
| `OOKCITE_CREDENTIAL_STORE` | `platform` to load a platform credential reference |
| `OOKCITE_CREDENTIAL_SERVICE` | Platform credential service name (default `ookcite-mcp`) |
| `OOKCITE_CREDENTIAL_ACCOUNT` | Platform credential account name (default `default`) |
### 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 |
| ------------------- | --------------------------------------------- |
| `validate_doi` | Check if a DOI exists (anti-hallucination) |
| `lookup_isbn` | Look up a book by ISBN |
| `reverse_lookup` | Find a paper from messy citation text |
| `batch_resolve` | Resolve many citation strings in one request (max 50) |
| `enhanced_search` | Corpus search with author / category / citation facets |
| `health_check` | Check API availability and health |
### Formatting
| Tool | Purpose |
| ------------------- | --------------------------------------------- |
| `format_citation` | Format a DOI in any of 2900+ CSL styles |
| `verify_references` | Batch-check a list of DOIs |
| `batch_format` | Format multiple citations at once |
| `search_styles` | Find CSL style IDs by name |
| `list_styles` | Page through the full CSL style list |
| `group_cite` | Generate grouped in-text markers (e.g. [1-3]) |
### Account
| Tool | Purpose |
| -------- | -------------------------------------------------------- |
| `usage` | Plan in effect plus daily (and monthly) lookups remaining |
### ORCID
| Tool | Purpose |
| ---------------- | ------------------------------------------------------ |
| `orcid_search` | Find ORCID profiles by name, affiliation, or ORCID ID |
| `orcid_profile` | Fetch one ORCID profile by ID |
| `ingest_orcid` | 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_collections` | List saved citation collections |
| `add_to_collection` | Add a citation (by DOI or free-text) |
| `batch_add_to_collection` | Add multiple citations at once |
| `import_bibliography` | Import BibTeX/RIS files into a collection|
| `export_collection` | Export collection as BibTeX |
| `search_collection` | Search within a collection; returns `entry_id` per match |
| `check_duplicates` | Check for duplicates; returns `entry_id` for matches |
| `delete_collection` | Delete a collection |
| `update_collection` | Update name, description, or style |
| `remove_from_collection` | Remove an entry by `entry_id`, bare DOI, or `doi:10.x/y` |
| `update_entry_metadata` | Correct a saved entry's title, authors, year, DOI, … |
| `merge_entries` | Merge two entries of one collection into one |
| `update_tags` | Set tags on a collection |
| `reorder_collection` | Reorder entries |
Typical workflow:
1. Keep `references.bib` or `library.bib` under version control in your project
2. Import that file into an OokCite collection with `import_bibliography`
3. Use `search_collection`, `check_duplicates`, and `export_collection` while revising
4. Treat 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 optionLo que la gente pregunta sobre ookcite-mcp
¿Qué es TurtleTech-ehf/ookcite-mcp?
+
TurtleTech-ehf/ookcite-mcp es mcp servers para el ecosistema de Claude AI. MCP server for OokCite citation validation and formatting Tiene 2 estrellas en GitHub y su última actualización registrada es del 2026-09-11.
¿Cómo se instala ookcite-mcp?
+
Puedes instalar ookcite-mcp clonando el repositorio (https://github.com/TurtleTech-ehf/ookcite-mcp) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.
¿Es seguro usar TurtleTech-ehf/ookcite-mcp?
+
Nuestro agente de seguridad ha analizado TurtleTech-ehf/ookcite-mcp y le ha asignado un Trust Score de 85/100 (tier: Trusted). Revisa el desglose completo de comprobaciones superadas y flags en esta página.
¿Quién mantiene TurtleTech-ehf/ookcite-mcp?
+
TurtleTech-ehf/ookcite-mcp es mantenido por TurtleTech-ehf. La última actividad registrada en GitHub es del 2026-09-11, con 0 issues abiertos.
¿Hay alternativas a ookcite-mcp?
+
Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.
Despliega ookcite-mcp en tu cloud
Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.
¿Mantienes este repo? Añade un badge a tu README
Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.
[](https://claudewave.com/repo/turtletech-ehf-ookcite-mcp)<a href="https://claudewave.com/repo/turtletech-ehf-ookcite-mcp"><img src="https://claudewave.com/api/badge/turtletech-ehf-ookcite-mcp" alt="Featured on ClaudeWave: TurtleTech-ehf/ookcite-mcp" width="320" height="64" /></a>Más MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
The fastest path to AI-powered full stack observability, even for lean teams.
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!