research-dispatcher-mcp
Allows searching Hacker News posts via the Algolia API, returning normalized results with title, URL, points, and creation date.
Integrates Brave Web Search to retrieve web search results, requiring a BRAVE_API_KEY. Returns normalized results with title, URL, and description.
Searches GitHub repositories for a given query, optionally using a GITHUB_TOKEN for higher rate limits. Returns results with title, URL, stars, and creation date.
Performs site-wide Reddit search without authentication (only User-Agent required), returning normalized results with title, URL, score, and creation date.
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., "@research-dispatcher-mcpWhat are people saying about AI coding tools?"
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.
research-dispatcher-mcp
A Model Context Protocol (MCP) server that lets any MCP-capable AI agent run one research query across multiple public sources (Hacker News, Reddit, GitHub, Brave Web Search) in parallel, with source-specific query tuning baked in.
What it does
Exposes 5 MCP tools:
Tool | Source | Auth |
| Hacker News (Algolia) | none |
| Reddit site-wide search | none (User-Agent only) |
| GitHub repositories | optional |
| Brave Web Search | requires |
| All of the above in parallel | per-source rules apply |
Each tool returns JSON: a list of normalized hits with title, url, score/stars, created_at, and source-specific metadata. research_all aggregates into {source: {status, count, items}}.
Related MCP server: Research Powerpack MCP
Why
AI agents that handle "what's the latest on X" tasks need to consult multiple sources but each has its own API, rate limit, and pitfalls. This server encodes those once so the agent calls one tool and gets normalized results.
Install
Requires Python 3.10+.
pip install canola-research-dispatcher-mcpConfigure your agent
Claude Code
Add to your ~/.claude/mcp.json:
{
"mcpServers": {
"research-dispatcher": {
"command": "research-dispatcher-mcp",
"env": {
"GITHUB_TOKEN": "ghp_... (optional)",
"BRAVE_API_KEY": "... (optional)"
}
}
}
}Restart Claude Code and the 5 research_* tools become available.
Codex CLI / Cursor / other MCP runtimes
Each runtime has its own MCP server registration. The command is always research-dispatcher-mcp.
Quickstart
"What's the latest on MCP server marketplaces?"
→ agent calls research_all(query="MCP server marketplace", limit=10, since_days=30)
→ HN + Reddit + GitHub returned in parallel, agent synthesizesEnvironment variables
Variable | Default | Purpose |
| unset | Raises GitHub rate limit from 60/hr to 5000/hr |
| unset | Required to enable |
Limitations
No paywall / logged-in content (X/Twitter, LinkedIn, private subreddits).
Reddit site-wide search has noticeably weaker recall than subreddit-specific browsing.
Brave's free tier is 2000 calls/month; this server does not currently track quota.
Source list is fixed in v0.1; add new sources in
src/research_dispatcher_mcp/sources.py.
Development
git clone https://github.com/0x67108864/research-dispatcher-mcp.git
cd research-dispatcher-mcp
python -m venv .venv && source .venv/bin/activate
pip install -e ".[dev]"
pytestRelated
The original SKILL.md format version:
canola_oil/skills/research-dispatcher— instruction-based, drop-in folder for agentskills.io runtimesAgent Skills standard: agentskills.io
Model Context Protocol: modelcontextprotocol.io
License
MIT — see LICENSE.
Author
canola_oil — https://0x67108864.github.io/
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
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/0x67108864/research-dispatcher-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server