openresearch-mcp
Enables searching Hacker News via the Algolia API.
Allows reading PDF documents from arXiv.
Provides web search functionality using DuckDuckGo.
Enables reading public GitHub repositories.
Provides search capabilities against the Semantic Scholar database.
Enables searching Stack Overflow for questions and answers.
Allows retrieval of YouTube video transcripts from captions.
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., "@openresearch-mcpshow me recent papers on large language models"
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.
openresearch-mcp
Zero-auth, security-hardened research MCP for cross-domain agents.
Give Claude, Cursor, OpenCode, Open WebUI, or any MCP-compatible agent a full research stack — web search, academic papers, PDFs, GitHub repos, news, macro & finance data, SEC filings, biomedical literature, Bluesky, and YouTube — with no API keys to manage. 22 tools, one install.
Why
Research agents are only as good as the sources they can reach. But every extra source usually means another API key, another signup, another quota to babysit — and more attack surface.
openresearch-mcp is built for local-first agents that need useful public data now, with safer defaults:
No logins, no keys — every tool works out of the box; optional env vars only raise rate limits.
Hardened by design — loopback-bound by default, SSRF-filtered URL fetching, prompt-injection-aware extraction, bounded downloads, graceful failures. Security-reviewed against OWASP for AI agents.
Cheap in context — the whole 22-tool surface is a measured ~6.2K tokens (~3% of a 200K window), and the number is generated by a script in the repo, not guessed.
Related MCP server: free-search-mcp
What you can do
The value isn't 22 tools in isolation — it's chaining them into one cross-domain research pass:
Company research →
search_sec_filings/get_company_financials→search_news→read_repo→read_urlAcademic deep-dive →
search_openalex→search_europepmc→read_pdfMacro & country context →
search_indicators→get_country_indicator→get_fx_rate→get_historical_weather
Quickstart
uvx openresearch-mcp --stdioPoint any MCP client at it (Claude Desktop, Cursor, or an HTTP agent — see Connect) and ask something cross-domain:
"Pull Apple's latest annual revenue from its SEC filings, then find recent news on its AI strategy."
The agent chains get_company_financials → search_news for you — no keys, no setup.
Install
From the MCP Registry (recommended for Claude Desktop / Cursor)
The server is listed on the official MCP Registry as io.github.olanokhin/openresearch-mcp. Registry-aware clients can discover and install it without manual config — search for openresearch-mcp in your client's MCP browser.
From PyPI
# Zero install, always isolated — recommended for manual use
uvx openresearch-mcp
# Or install globally
pip install openresearch-mcp
openresearch-mcpBy default the server starts on http://127.0.0.1:8000/mcp (Streamable HTTP, MCP 1.1+) — bound to loopback so it is not exposed to your local network. To expose it (e.g. in a container or behind a gateway), bind all interfaces explicitly:
# Custom port
uvx openresearch-mcp --port 9000
# Bind all interfaces (only behind an auth/rate-limit gateway)
uvx openresearch-mcp --host 0.0.0.0 --port 9000Note: when binding beyond loopback, put an auth/rate-limit gateway in front. The server is zero-auth by design, and
read_url/read_pdffetch arbitrary URLs (private/link-local/loopback ranges are blocked to prevent SSRF, but rate limiting is your responsibility).
Connect to an MCP client
Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json
(Windows: %APPDATA%\Claude\claude_desktop_config.json)
{
"mcpServers": {
"openresearch": {
"command": "uvx",
"args": ["openresearch-mcp", "--stdio"]
}
}
}Restart Claude Desktop after saving. The server runs in stdio mode — no port needed.
Cursor
Create or edit ~/.cursor/mcp.json (global) or .cursor/mcp.json (per-project):
{
"mcpServers": {
"openresearch": {
"command": "uvx",
"args": ["openresearch-mcp", "--stdio"]
}
}
}HTTP agents (OpenCode, Open WebUI, custom)
Start the server:
uvx openresearch-mcp
# or: openresearch-mcpPoint your agent at:
http://localhost:8000/mcpTools
The ~Tok column is each tool's full definition (name + description + JSON input schema, as sent in tools/list) — injected into the agent context on every request.
Tool | Source | Notes | ~Tok |
| DuckDuckGo | Optional | 251 |
| Any webpage | Strips nav/scripts, returns clean text | 164 |
| Any PDF or arXiv | Accepts | 181 |
| GitHub public repos | README + file tree + key docs; set | 211 |
| HN via Algolia | Story search with points + comment counts | 206 |
| Stack Overflow API | Set | 212 |
| OpenAlex | 250M+ works, zero rate limiting; set | 231 |
| YouTube captions | Accepts full URLs, | 194 |
| Server clock | Current UTC date/time — anchors relative requests ("last 30 days") instead of guessing | 240 |
| Open-Meteo | Current conditions + up to 16-day forecast by place name; no key. See licensing note below | 229 |
| Open-Meteo | Climate series since 1940 for a place + date range, aggregated monthly/yearly; no key. See licensing note below | 328 |
| World Bank | Find an indicator code by keyword ("GDP", "migration"); feed into | 240 |
| World Bank | Yearly socio-economic series (GDP, population, inflation, migration, life expectancy…) by country + code; no key | 338 |
| Frankfurter (ECB) | Currency rates: latest, a historical date, or a date-range series (downsample week/month); no key | 367 |
| CoinGecko | Crypto price (current or daily history) by coin id/symbol vs a quote currency; no key | 284 |
| GDELT | Fresh global news on a topic (multilingual); returns articles to feed into | 481 |
| Europe PMC | Biomedical/life-science papers; flags open-access and gives a PDF URL to feed into | 264 |
| Bluesky | Find researcher/dev profiles by name, handle, or bio; no key | 227 |
| Bluesky | Full bio + follower/post counts for a handle; no key | 200 |
| Bluesky | A user's recent original posts (reposts/replies filtered); no key | 228 |
| SEC EDGAR | Annual revenue, earnings, assets for a US-listed company by ticker (10-K filings); no key (set | 233 |
| SEC EDGAR | Full-text search of filings (10-K/10-Q/8-K) by keyword/company; returns a document URL to feed into | 300 |
All 22 tool definitions | 5,609 | ||
Server | selection guide + chaining recipes | 815 | |
Total per request | ≈ 3% of a 200K context window | 6,424 |
Tokens measured with tiktoken o200k_base (GPT-4o / o-series encoding), offline; Claude's tokenizer differs by ~±10-15%. This table is generated — run uv run python scripts/context_cost.py --write; CI fails if it drifts.
Optional env vars
All tools work without any keys. Set these to increase rate limits:
Variable | Effect |
| GitHub: 60 → 5,000 req/hr |
| OpenAlex polite pool (higher limits) |
| Stack Overflow: higher daily quota |
| Your contact (e.g. email) for SEC EDGAR fair-access; a default is used otherwise |
Example with keys:
GITHUB_TOKEN=ghp_... OPENALEX_EMAIL=you@example.com uvx openresearch-mcpOr in Claude Desktop config:
{
"mcpServers": {
"openresearch": {
"command": "uvx",
"args": ["openresearch-mcp", "--stdio"],
"env": {
"GITHUB_TOKEN": "ghp_...",
"OPENALEX_EMAIL": "you@example.com"
}
}
}
}Security
openresearch-mcp was reviewed and hardened using agent-security-skill, an OWASP-aligned AI agent security review skill developed by the maintainer.
That review directly led to concrete hardening in this server: SSRF-resistant URL fetching, untrusted-content framing for tool outputs, bounded downloads, pinned GitHub Actions, dependency major-version caps, and regression tests for security-sensitive behavior.
See the hardening notes and current security posture in SECURITY.md.
Health check
When running in HTTP mode, check which sources are reachable:
curl http://localhost:8000/health{
"status": "ok",
"sources": {
"duckduckgo": { "status": "ok", "latency_ms": 173 },
"github": { "status": "ok", "latency_ms": 101 },
"hacker_news": { "status": "ok", "latency_ms": 308 },
"stackoverflow": { "status": "ok", "latency_ms": 247 },
"openalex": { "status": "ok", "latency_ms": 412 },
"worldbank": { "status": "ok", "latency_ms": 296 },
"frankfurter": { "status": "ok", "latency_ms": 184 },
"europepmc": { "status": "ok", "latency_ms": 356 },
"bluesky": { "status": "ok", "latency_ms": 152 },
"youtube": { "status": "ok", "latency_ms": 320 }
}
}status is "ok", "degraded" (some sources down), or "down" (all unreachable). HTTP 200 / 503.
/health is a lightweight upstream reachability sample, not a per-tool status matrix.
Rate-limited or policy-sensitive sources (GDELT, SEC, CoinGecko, etc.) are checked when their tools are called.
Known limitations
Reddit / Zenodo: block unauthenticated scraping — not included
YouTube: rate-limited at scale; works well for personal/low-volume use
Weather (Open-Meteo): data is licensed CC BY 4.0 and free for non-commercial use up to ~10,000 requests/day. Commercial use requires Open-Meteo's paid plan or self-hosting — embedding
get_weather_forecastin a commercial product without one inherits a license obligation. Attribution to Open-Meteo is required.PDF parsing:
read_pdfparses untrusted PDFs in-process (with download-size and page caps). Fine for personal/low-volume use; a public high-volume deployment should isolate parsing in a subprocess with CPU/memory limits.
Roadmap
Reddit OAuth (browser-based, no user key management)
GitHub Device Flow login
PubMed / NCBI (optional key)
NewsAPI support (optional key)
License
Apache 2.0
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.
Latest Blog Posts
- 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/olanokhin/openresearch-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server