Zero-auth multi-source research MCP server — web, GitHub, Hacker News, Stack Overflow, arXiv, OpenAlex, YouTube transcripts, and more.
Project description
openresearch-mcp
Zero-auth multi-source research MCP server. Works with Claude Desktop, Cursor, OpenCode, Open WebUI, or any MCP-compatible agent — no API keys required.
Tools
| Tool | Source | Notes |
|---|---|---|
web_search |
DuckDuckGo | Optional site= param to scope to a domain (e.g. arxiv.org) |
read_url |
Any webpage | Strips nav/scripts, returns clean text |
read_pdf |
Any PDF or arXiv | Accepts /abs/, /pdf/, /html/ arXiv URLs interchangeably |
search_openalex |
OpenAlex | 250M+ works, zero rate limiting; set OPENALEX_EMAIL for polite pool |
search_hacker_news |
HN via Algolia | Story search with points + comment counts |
search_stackoverflow |
Stack Overflow API | Set STACKEXCHANGE_KEY for higher quota |
read_repo |
GitHub public repos | README + file tree + key docs; set GITHUB_TOKEN for 5k req/hr |
get_youtube_transcript |
YouTube captions | Accepts full URLs, youtu.be/ links, shorts, or bare video IDs |
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-mcp
By 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 9000
Note: 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).
Update
# uvx
uvx --refresh openresearch-mcp
# pip
pip install --upgrade openresearch-mcp
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-mcp
Point your agent at:
http://localhost:8000/mcp
Optional env vars
All tools work without any keys. Set these to increase rate limits:
| Variable | Effect |
|---|---|
GITHUB_TOKEN |
GitHub: 60 → 5,000 req/hr |
OPENALEX_EMAIL |
OpenAlex polite pool (higher limits) |
STACKEXCHANGE_KEY |
Stack Overflow: higher daily quota |
Example with keys:
GITHUB_TOKEN=ghp_... OPENALEX_EMAIL=you@example.com uvx openresearch-mcp
Or in Claude Desktop config:
{
"mcpServers": {
"openresearch": {
"command": "uvx",
"args": ["openresearch-mcp", "--stdio"],
"env": {
"GITHUB_TOKEN": "ghp_...",
"OPENALEX_EMAIL": "you@example.com"
}
}
}
}
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 },
"youtube": { "status": "ok", "latency_ms": 320 }
}
}
status is "ok", "degraded" (some sources down), or "down" (all unreachable). HTTP 200 / 503.
Known limitations
- Reddit / Zenodo: block unauthenticated scraping — not included
- YouTube: rate-limited at scale; works well for personal/low-volume use
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
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file openresearch_mcp-0.1.6.tar.gz.
File metadata
- Download URL: openresearch_mcp-0.1.6.tar.gz
- Upload date:
- Size: 119.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7ce46a97e970998762f92ea2ba8166949837a15c480ee1d055ffdf1c5c598fcf
|
|
| MD5 |
a967b5480cca38a940c6e442e642889f
|
|
| BLAKE2b-256 |
febc0a9a128c1246f8e77466625bd964417f2a8c65833f47eedfd247763cc161
|
Provenance
The following attestation bundles were made for openresearch_mcp-0.1.6.tar.gz:
Publisher:
release.yml on olanokhin/openresearch-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
openresearch_mcp-0.1.6.tar.gz -
Subject digest:
7ce46a97e970998762f92ea2ba8166949837a15c480ee1d055ffdf1c5c598fcf - Sigstore transparency entry: 1903575601
- Sigstore integration time:
-
Permalink:
olanokhin/openresearch-mcp@7b7b3fc25dd8bd8a427057e77414a36e38bec409 -
Branch / Tag:
refs/tags/v0.1.6 - Owner: https://github.com/olanokhin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@7b7b3fc25dd8bd8a427057e77414a36e38bec409 -
Trigger Event:
push
-
Statement type:
File details
Details for the file openresearch_mcp-0.1.6-py3-none-any.whl.
File metadata
- Download URL: openresearch_mcp-0.1.6-py3-none-any.whl
- Upload date:
- Size: 20.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
55e00c3af3c90466f30f06e203fbd546475670400330a6c5e6ebec52fa4f23d4
|
|
| MD5 |
11471d1d86d31d9621274395a48683ae
|
|
| BLAKE2b-256 |
6192c52568cb7062e446ebaed042ffcf2f042dc37ed6f56b40bcd090dbc4d6dc
|
Provenance
The following attestation bundles were made for openresearch_mcp-0.1.6-py3-none-any.whl:
Publisher:
release.yml on olanokhin/openresearch-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
openresearch_mcp-0.1.6-py3-none-any.whl -
Subject digest:
55e00c3af3c90466f30f06e203fbd546475670400330a6c5e6ebec52fa4f23d4 - Sigstore transparency entry: 1903575662
- Sigstore integration time:
-
Permalink:
olanokhin/openresearch-mcp@7b7b3fc25dd8bd8a427057e77414a36e38bec409 -
Branch / Tag:
refs/tags/v0.1.6 - Owner: https://github.com/olanokhin
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@7b7b3fc25dd8bd8a427057e77414a36e38bec409 -
Trigger Event:
push
-
Statement type: