GnistAI GnistAI
Log in

Crossref

Academic publication metadata — DOI lookup, citation data, and journal articles.

Overview   |   MCP Docs   |   API Docs   |   OpenAPI   |   Playground   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 5 tools tools 5 5 Science

Data source: Crossref

MCP MCP Protocol

Endpoint https://context.gnist.ai/mcp/crossref/
claude_desktop_config.json
{
  "mcpServers": {
    "gnist-crossref": {
      "url": "https://context.gnist.ai/mcp/crossref/",
      "headers": {
        "Gnist-API-Key": "YOUR_API_KEY"
      }
    }
  }
}
Shell
curl -X POST "https://context.gnist.ai/mcp/crossref/" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -H "Gnist-API-Key: YOUR_API_KEY" \
  -d '{"jsonrpc": "2.0", "method": "tools/call", "id": 1, "params": {"name": "resolve_doi", "arguments": {"doi": "example"}}}'

API REST API

API Root https://context.gnist.ai/rest/crossref/

5 endpoints available:

Shell
curl "https://context.gnist.ai/rest/crossref/resolve_doi?doi=example" \
  -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx

resp = httpx.get(
    "https://context.gnist.ai/rest/crossref/resolve_doi",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    params={
        "doi": "example"
},
)
print(resp.json())

OpenAPI Spec  ·  Full API Docs

CLI Command Line

Command gc crossref

CLI documentation will be available when the GnistAI SDK is published.

Install
pip install gnistai

Available Tools (5)

resolve_doi
Resolve a DOI to full bibliographic metadata via Crossref.
ParameterTypeRequiredDescription
doistringrequiredThe DOI to resolve. Accepts bare DOI (e.g. "10.1038/nature12373") or full URL form (e.g. "https://doi.org/10.1038/nature12373").
search_works
Search Crossref for scholarly publications by keyword.
ParameterTypeRequiredDescription
querystringrequiredFull-text search query (e.g. "CRISPR gene editing", "climate change tipping points").
filter_typeanyoptionalLimit to a Crossref work type. Common values: "journal-article", "book-chapter", "proceedings-article", "dataset", "posted-content" (preprints).
filter_issnanyoptionalLimit to a specific journal by ISSN (e.g. "0028-0836" for Nature).
filter_funderanyoptionalLimit to works funded by a Crossref Funder ID (e.g. "10.13039/100000001" for NSF).
date_fromanyoptionalOnly include works published on or after this date (YYYY-MM-DD or YYYY).
date_toanyoptionalOnly include works published on or before this date (YYYY-MM-DD or YYYY).
limitintegeroptionalNumber of results to return (1–50, default 10). (default: 10)
get_journal
Fetch metadata for a journal by ISSN.
ParameterTypeRequiredDescription
issnstringrequiredThe journal ISSN (e.g. "0028-0836" for Nature, "1476-4687" for Nature online).
get_funder
Fetch metadata for a research funder by Crossref Funder ID.
ParameterTypeRequiredDescription
funder_idstringrequiredCrossref Funder Registry ID (e.g. "10.13039/100000001").
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related