SciX Client
Allows searching for and identifying scholarly papers using arXiv identifiers within the SciX/ADS database.
Enables searching for academic publications and resolving links through Digital Object Identifiers (DOIs).
Supports exporting bibliographic citations in the IEEE format for academic use.
Provides programmatic access to the NASA ADS (Astrophysics Data System) for searching astronomical literature, metrics, and citation data.
Allows users to filter and identify open-access research papers within the search results.
Enables searching for publications and author data using unique ORCID identifiers.
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., "@SciX ClientFind the most cited papers by Stephen Hawking about black holes."
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.
scix-client
scix-client gives your AI assistant direct access to the SciX / NASA ADS database. Search the literature, build bibliographies, analyze citation networks, manage personal libraries, resolve object names via SIMBAD/NED, and export references in BibTeX, AASTeX, or 15 other formats — all from natural language.
It also works standalone: as a CLI tool, a Python library, or a Rust crate.
Research workflows: literature reviews, bibliography management, citation analysis, reference export, object resolution, paper details, library collaboration, annotation/notes
Mode | What it does | Guide |
MCP server ( | Expose SciX tools to Claude, Cursor, Zed, etc. | |
CLI ( | Command-line tool for your terminal | |
Python library ( | Native Python module — | |
Rust library ( | Async Rust crate — |
One binary (scix) does everything. Python bindings are auto-generated from the Rust types — zero extra maintenance.
Prerequisites
You need a SciX / ADS API token. Get one (free) at: https://ui.adsabs.harvard.edu/user/settings/token
export SCIX_API_TOKEN="your-token-here"
# or, for backwards compatibility:
export ADS_API_TOKEN="your-token-here"Related MCP server: NASA ADS MCP Server
Quick Start: MCP
Give your AI assistant access to the entire SciX database.
Install
cargo install scix-client --features cli
# or: cargo binstall scix-clientAutomatic setup (recommended)
scix setupThis detects your installed editors (Claude Code, Claude Desktop, Cursor, Zed), prompts for your API token, validates it, and writes the correct config for each one. Run it once and you're done.
Options:
scix setup claude-code— configure only Claude Codescix setup --yes— non-interactive (uses env token, configures all detected editors)scix setup --skip-validation— skip token validation
Manual setup
claude mcp add scix -- /path/to/scix serveAdd to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"scix": {
"command": "/path/to/scix",
"args": ["serve"],
"env": { "SCIX_API_TOKEN": "your-token-here" }
}
}
}See docs/mcp-server.md for Cursor, Zed, full tool reference, and example workflows.
Quick Start: CLI
cargo install scix-client --features cli
scix search 'first_author:"Perlmutter" supernova' --sort "citation_count desc"
scix export 1999ApJ...517..565P --format bibtex
scix cites 1999ApJ...517..565P --rows 50
scix libraries create "Thesis Papers" --description "Key references"See docs/cli.md for all commands including library permissions, notes, and set operations.
Quick Start: Python
pip install scix-clientimport scix_client
client = scix_client.SciXClient()
results = client.search('author:"Einstein" year:1905', rows=5)
for paper in results.papers:
print(f"{paper.title} ({paper.year}) — {paper.citation_count} citations")See docs/python.md for the full API reference including v0.2.0 library management methods.
Quick Start: Rust
[dependencies]
scix-client = "0.3"use scix_client::SciXClient;
#[tokio::main]
async fn main() -> scix_client::error::Result<()> {
let client = SciXClient::from_env()?;
let results = client.search("author:\"Einstein\" year:1905", 5).await?;
for paper in &results.papers {
println!("{} — {} citations", paper.title, paper.citation_count.unwrap_or(0));
}
Ok(())
}See docs/rust.md for the full API, error handling, and architecture.
Query Syntax Quick Reference
Pattern | Meaning |
| Author search |
| First author only |
| Title words |
| Abstract words |
| Year / year range |
| Bibcode |
| DOI |
| Astronomical object |
| Refereed papers |
| Open access |
Boolean: AND, OR, NOT, parentheses
Functional: citations(bibcode:X), references(bibcode:X), similar(bibcode:X)
Sort: date desc (default), citation_count desc, score desc, read_count desc
See docs/query-syntax.md for the full reference including all 17 export formats.
Rate Limiting
The SciX API allows 5,000 requests/day and 5 requests/second. scix-client handles rate limiting automatically — a token-bucket rate limiter enforces 5 req/s locally, and API rate-limit headers are respected.
License
MIT
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
- Flicense-qualityDmaintenanceEnables AI assistants to search across multiple academic databases (PubMed, arXiv, bioRxiv, medRxiv, Semantic Scholar) through a unified interface. Supports advanced filtering, metadata retrieval, PDF downloads, and comprehensive research workflows with citation analysis.Last updated5
- AlicenseAqualityDmaintenanceProvides seamless access to the NASA Astrophysics Data System (ADS) for searching astronomical papers, tracking citations and metrics, managing paper libraries, and exporting BibTeX references through natural language conversation.Last updated107MIT
- AlicenseAqualityFmaintenanceProvides access to the Elsevier Scopus API, enabling AI assistants to search for academic papers, retrieve detailed abstracts, and look up author profiles. It facilitates bibliometric research and scholarly data analysis through natural language commands.Last updated4537MIT
- AlicenseAqualityFmaintenanceEnables LLMs to search astronomical literature, retrieve paper metadata, analyze citation metrics, and export bibliographic data via the NASA Astrophysics Data System (SciX) API.Last updated21254MIT
Related MCP Connectors
Search arXiv/Semantic Scholar/OpenAlex + medical evidence (PubMed/Europe PMC) + LaTeX/PDF tools.
Search 340M+ academic papers — citation graphs, semantic similarity, and AI literature reviews.
Scholarly search: OpenAlex, Crossref, arXiv, OpenCitations and PubMed in one endpoint.
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/yipihey/scix-client'
If you have feedback or need assistance with the MCP directory API, please join our Discord server