Skip to main content

Zero-auth multi-source research MCP server — web, GitHub, Hacker News, Stack Overflow, arXiv, OpenAlex, YouTube transcripts, and more.

Project description

openresearch-mcp

PyPI version Python versions License CI MCP Registry

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://0.0.0.0:8000/mcp (Streamable HTTP, MCP 1.1+).

# Custom port
uvx openresearch-mcp --port 9000

# Custom host and port
uvx openresearch-mcp --host 127.0.0.1 --port 9000

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

openresearch_mcp-0.1.5.tar.gz (114.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

openresearch_mcp-0.1.5-py3-none-any.whl (16.8 kB view details)

Uploaded Python 3

File details

Details for the file openresearch_mcp-0.1.5.tar.gz.

File metadata

  • Download URL: openresearch_mcp-0.1.5.tar.gz
  • Upload date:
  • Size: 114.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for openresearch_mcp-0.1.5.tar.gz
Algorithm Hash digest
SHA256 c1533c0f59876ab272e7acdc7aadf6459b101aef1d6ebfc1efd6cec99b70f3d9
MD5 36738329c5c648cb201a0b568db14275
BLAKE2b-256 841a25e1a11f06fed949e8c28352fc9b3f3d187643716d41e1e29beb27425ca3

See more details on using hashes here.

Provenance

The following attestation bundles were made for openresearch_mcp-0.1.5.tar.gz:

Publisher: release.yml on olanokhin/openresearch-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file openresearch_mcp-0.1.5-py3-none-any.whl.

File metadata

File hashes

Hashes for openresearch_mcp-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 30e6c6b2f5b8920e9b58342ee26004c7cb140c2b02010e5315f67aa8d1936cfa
MD5 243e771725241550ee9a9c937f945d2e
BLAKE2b-256 f940d291a557744f8901554381a8ba2061af17b68ecc231e9e7649ec35604e53

See more details on using hashes here.

Provenance

The following attestation bundles were made for openresearch_mcp-0.1.5-py3-none-any.whl:

Publisher: release.yml on olanokhin/openresearch-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page