npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@menesekinci/deep-research-mcp

v0.1.8

Published

Async deep research MCP server for AI agents and MCP clients with Brave, GitHub, Context7, and SQLite-backed local storage.

Readme

Deep Research MCP

Async deep research MCP server for AI agents and MCP clients. It starts long-running research jobs, searches Brave/GitHub/Context7, fetches and cleans sources, stores chunks in local SQLite, and lets clients retrieve reports or targeted evidence without dumping every page into context.

Install With NPX

No repository clone or global install is required. Add the package to your MCP client config and let npx download and run the latest published version on demand.

[mcp_servers.deep-research]
command = "npx"
args = ["-y", "@menesekinci/deep-research-mcp@latest"]

GitHub fallback for testing unreleased commits:

[mcp_servers.deep-research]
command = "npx"
args = ["-y", "github:menesekinci/deep-research-mcp"]

Authentication And Secrets

Deep Research MCP reads credentials from environment variables or from a local config file. Environment variables always win over config file values.

Required and optional keys:

  • BRAVE_API_KEY is required for web search.
  • GITHUB_TOKEN is optional for higher limits/private repositories.
  • CONTEXT7_API_KEY is optional.
  • DEEP_RESEARCH_HOME defaults to ~/.deep-research-mcp.
  • DEEP_RESEARCH_DB can point directly to a custom SQLite file.
  • DEEP_RESEARCH_CONFIG can point to a JSON config file. Default: ~/.deep-research-mcp/config.json.

Legacy CODEX_DEEP_RESEARCH_HOME and CODEX_DEEP_RESEARCH_DB environment variables are still accepted as aliases.

Option 1: MCP Config Env Block

Use this for a quick local setup. Do not commit files containing real tokens.

[mcp_servers.deep-research]
command = "npx"
args = ["-y", "@menesekinci/deep-research-mcp@latest"]

[mcp_servers.deep-research.env]
BRAVE_API_KEY = "..."
GITHUB_TOKEN = "..."
CONTEXT7_API_KEY = "..."

Option 2: Local Config File

Use this when your MCP client config is shared or checked into a repository. Keep this file outside your project repo.

Default path:

~/.deep-research-mcp/config.json

Example:

{
  "braveApiKey": "...",
  "githubToken": "...",
  "context7ApiKey": "...",
  "homeDir": "~/.deep-research-mcp",
  "dbPath": "~/.deep-research-mcp/research.sqlite"
}

Then your MCP config can stay token-free:

[mcp_servers.deep-research]
command = "npx"
args = ["-y", "@menesekinci/deep-research-mcp@latest"]

For a custom config location:

[mcp_servers.deep-research.env]
DEEP_RESEARCH_CONFIG = "C:\\Users\\you\\.deep-research-mcp\\config.json"

Storage

The server stores cleaned text chunks, source metadata, citations, events, and job state in SQLite. It does not store raw HTML by default.

Tools

  • research_start
  • research_status
  • research_report
  • research_sources
  • research_search
  • research_get_source
  • research_get_chunks
  • research_active_jobs
  • research_due_jobs
  • research_cancel
  • research_delete

Typical Flow

  1. Call research_start with a query, depth, and source types.
  2. The tool returns a job_id and next_check_after_seconds.
  3. Later, call research_status, research_report, research_sources, or research_search.
  4. Only reports and relevant chunks are returned to the agent context; full fetched pages are kept in SQLite.