Science
Data source: Crossref, OpenAlex, PubMed, Semantic Scholar
MCP Protocol
Endpoint
https://context.gnist.ai/mcp/academic-research/
claude_desktop_config.json
{
"mcpServers": {
"gnist-academic-research": {
"url": "https://context.gnist.ai/mcp/academic-research/",
"headers": {
"Gnist-API-Key": "YOUR_API_KEY"
}
}
}
}
Shell
curl -X POST "https://context.gnist.ai/mcp/academic-research/" \
-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": "search_papers", "arguments": {"query": "example"}}}'
REST API
API Root
https://context.gnist.ai/rest/academic-research/
4 endpoints available:
GET /rest/academic-research/search_papersGET /rest/academic-research/get_paperGET /rest/academic-research/list_academic_sourcesGET /rest/academic-research/report_feedback
Shell
curl "https://context.gnist.ai/rest/academic-research/search_papers?query=example" \ -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx
resp = httpx.get(
"https://context.gnist.ai/rest/academic-research/search_papers",
headers={"Gnist-API-Key": "YOUR_API_KEY"},
params={
"query": "example"
},
)
print(resp.json())
Command Line
Command
gc academic-research
CLI documentation will be available when the GnistAI SDK is published.
Install
pip install gnistai
Available Tools (4)
search_papersSearch for academic papers across Crossref, OpenAlex, PubMed, and Semantic Scholar.
| Parameter | Type | Required | Description |
|---|---|---|---|
query | string | required | Search query — keywords, title, topic, or author name. |
max_results | integer | optional | Maximum number of results. (default: 10) |
year_from | any | optional | Earliest publication year. |
year_to | any | optional | Latest publication year. |
get_paperResolve a DOI across all four academic sources and return merged metadata.
| Parameter | Type | Required | Description |
|---|---|---|---|
doi | string | required | Digital Object Identifier (e.g. '10.1038/nature12373'). |
list_academic_sourcesList all registered academic data sources and their status.
report_feedbackReport a bug, feature request, or general feedback for this data source.
| Parameter | Type | Required | Description |
|---|---|---|---|
feedback | string | required | |
feedback_type | string | optional | (default: "general") |