mcp-sparkit
Officialsparkit-mcp
MCP server for SPARKIT — call the scientific research agent from Claude Desktop, Cursor, Claude Code, or any other MCP-compatible client.
Two tools are exposed:
research— submit a scientific question. SPARKIT searches the literature, reads the relevant papers, and returns a cited Markdown report. Blocks until the job finishes (default 4 min) and returns the full report inline.get_job_status— fetch a previously-submitted job by id. Useful whenresearchreturned before the job finished, or to revisit a past report.
Install
uv tool install sparkit-mcpOr with pip:
pip install sparkit-mcpEither installs a sparkit-mcp console script. (Pre-release: install
straight from GitHub with
uv tool install "git+https://github.com/SPARKIT-science/sparkit-mcp.git"
until the first PyPI release lands.)
Related MCP server: PapersFlow
Get an API key
Sign up at https://app.sparkit.science/signup (Try-it costs $10 for 5 queries; subscriptions start at $50/mo).
Visit https://app.sparkit.science/keys and create a key.
Copy the key — it's shown only once.
Configure your MCP client
Claude Desktop
Edit claude_desktop_config.json:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
Add:
{
"mcpServers": {
"sparkit": {
"command": "sparkit-mcp",
"env": {
"SPARKIT_API_KEY": "sk_sparkit_..."
}
}
}
}Restart Claude Desktop. You should see sparkit appear in the tools
icon next to the chat input.
If sparkit-mcp isn't on Claude Desktop's PATH (common with uv tool),
use the absolute path:
"command": "/Users/you/.local/bin/sparkit-mcp"(Find the path with which sparkit-mcp after uv tool install.)
Cursor
Edit ~/.cursor/mcp.json (or .cursor/mcp.json in your project):
{
"mcpServers": {
"sparkit": {
"command": "sparkit-mcp",
"env": {
"SPARKIT_API_KEY": "sk_sparkit_..."
}
}
}
}Reload Cursor (Cmd+Shift+P → "Reload Window").
Claude Code
claude mcp add sparkit -e SPARKIT_API_KEY=sk_sparkit_... -- sparkit-mcpTry it
Once configured, ask the LLM:
Use SPARKIT to look up the most recent literature on the role of WRNIP1 as a synthetic-lethal target in cancer.
The LLM will call research. Expect a 60-180s wait, then a Markdown
report with inline citations and a numbered Sources list.
Configuration
Env var | Default | Description |
| (required) | Bearer key from https://app.sparkit.science/keys. |
|
| Override the API base URL. Useful for staging or self-hosted deployments. |
|
| Per-HTTP-request timeout. Doesn't affect total wait time for |
Tool reference
research(question, response_format?, include_citations?, max_wait_seconds?)
Arg | Type | Default | Description |
| string | — | The scientific question. Required. Be specific. |
|
|
| Length of the returned Markdown report. |
| boolean |
| Keep |
| int (30-540) |
| How long to block waiting before returning the job_id with instructions to poll. |
Returns Markdown. On timeout, returns a status line with the job_id so
the LLM can call get_job_status later.
get_job_status(job_id)
Returns the cited Markdown report if the job has completed, a status line if it's still running, or an error message otherwise.
Troubleshooting
Authentication failed — SPARKIT_API_KEY isn't set or is invalid.
Check claude_desktop_config.json for typos; restart Claude Desktop
after edits.
Quota exhausted — out of monthly queries / Try-it credits. Visit https://app.sparkit.science/billing.
Tool isn't appearing in Claude Desktop — check the Claude Desktop log:
macOS:
~/Library/Logs/Claude/mcp-server-sparkit.logWindows:
%LOCALAPPDATA%\Claude\Logs\mcp-server-sparkit.log
The most common issue is command: sparkit-mcp not being on PATH;
substitute the absolute path from which sparkit-mcp.
Job times out — max_wait_seconds cap is 540s (9 min). For very
deep questions, submit then poll get_job_status instead of waiting
inline. SPARKIT will also auto-cancel jobs that exceed its own
internal limit.
License
MIT.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- Alicense-qualityCmaintenanceEnables searching, fetching, and analyzing scientific papers from ArXiv, ACL Anthology, Semantic Scholar, and Hugging Face datasets, with optional LLM-powered document QA and research proposal workflows.90Apache 2.0
- Alicense-qualityFmaintenanceTurn any AI agent into an academic researcher that can search, read, cite, and write full literature reviews autonomously.13MIT
- AlicenseAqualityCmaintenanceAn intelligent research assistant MCP server for AI agents, providing task-oriented literature search and analysis across multiple academic databases.24624Apache 2.0
- Alicense-qualityAmaintenanceEnables AI agents to search academic papers, analyze citations and authors, track trending research, and find semantically related work using free scholarly sources.MIT
Related MCP Connectors
Open scientific and engineering knowledge for AI agents: search, evidence, document publishing.
Search peer-reviewed papers and research methodology guidance from your AI agent.
Search arXiv/Semantic Scholar/OpenAlex + medical evidence (PubMed/Europe PMC) + LaTeX/PDF tools.
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/SPARKIT-science/sparkit-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server