AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified Apache-2.0 Self-run

Scholar Cli

mcp-saakshigupta2002-scholar-cli · by saakshigupta2002

Agent-native CLI for research papers: arXiv search + Semantic Scholar citations, local SQLite mirror, MCP server, and a Printing Press-style Claude Code skill.

No reviews yet
0 installs
29 views
0.0% view→install

Install

$ agentstack add mcp-saakshigupta2002-scholar-cli

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-saakshigupta2002-scholar-cli)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Scholar Cli? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

scholar

An agent-native CLI for research papers. Search arXiv, read abstracts, and trace citations from the terminal — with a local SQLite mirror for instant, offline repeat lookups.

Built in the Printing Press style: token-efficient output, a local data mirror, a companion Claude Code skill, and an MCP server. No API key required; no third-party Python dependencies.

Install

Two interchangeable implementations live in this repo — identical commands and JSON output. Pick whichever suits you.

Go — a single static binary (matches the Printing Press standard):

go install github.com/saakshigupta2002/scholar-cli/cmd/scholar@latest
scholar mcp   # runs the MCP server over stdio

Python — zero third-party dependencies:

pipx install "git+https://github.com/saakshigupta2002/scholar-cli"   # gives `scholar` and `scholar-mcp`
# or from a clone:            pip install -e .
# or without installing:      python3 -m scholar search "graph neural networks"

Usage

scholar search "diffusion models protein design"   # search arXiv
scholar get 1706.03762                              # one paper + abstract
scholar cites 1706.03762                            # who cited it
scholar cites 1706.03762 --references               # what it cites
scholar fulltext 1706.03762                         # full text (to summarize)
scholar list                                        # cached papers (offline)

Agent-friendly flags

scholar --json search "mixture of experts" --max 5         # structured output
scholar --json --select id,title search "rag" --max 10     # only the fields you need

| Flag | Purpose | |------|---------| | --json | Structured JSON for agents/scripts | | --select a,b,c | Keep only these fields (saves tokens) | | --max N | Number of results | | --cat cs.LG | Limit a search to a category | | --sort relevance\|submitted\|updated | Result ordering |

Exit codes: 0 ok · 2 usage · 3 not found · 4 upstream/network error.

How it's built

| Piece | Job | |-------|-----| | scholar/arxiv.py | arXiv client (search + fetch by id) | | scholar/semscholar.py | Semantic Scholar client (citations) | | scholar/db.py | Local SQLite mirror (~/.scholar/scholar.db) | | scholar/output.py | Human table vs --json / --select | | scholar/cli.py | Command parsing and dispatch | | scholar/mcp_server.py | MCP server (stdio) exposing the same tools | | cli-skills/pp-scholar/SKILL.md | Claude Code skill that drives the CLI |

A mirror-image Go implementation lives in [cmd/scholar/](cmd/scholar/) (same commands, same JSON, same SQLite mirror) — a single static binary for the Printing Press library. Run its MCP server with scholar mcp.

MCP

The same operations are available over MCP for agents that prefer it:

{ "mcpServers": { "scholar": { "command": "scholar-mcp" } } }

Data sources

Please be polite to both APIs (they are free and rate-limited).

License

Apache-2.0.

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.