$git clone https://github.com/assafelovic/gpt-researcher| 1 | # GPT Researcher |
| 2 | |
| 3 | GPT Researcher is an autonomous agent designed for comprehensive online research on any given topic. |
| 4 | |
| 5 | The agent produces detailed, factual and unbiased research reports with citations, aggregating over 20 web sources per task to form objective conclusions. |
| 6 | |
| 7 | ## Why |
| 8 | |
| 9 | - Manual research takes hours; GPT Researcher runs in ~3 minutes. |
| 10 | - Single-source answers hallucinate; aggregation across 20+ sources reduces bias. |
| 11 | - Reports export straight to Markdown, PDF and Docx. |
| 12 | |
| 13 | ## Architecture |
| 14 | |
| 15 | A planner agent generates research questions. Execution agents crawl and summarize per-question. The planner aggregates everything into one filtered, cited report. |
| 16 | |
| 17 | ## Quickstart |
| 18 | |
| 19 | ```bash |
| 20 | pip install gpt-researcher |
| 21 | export OPENAI_API_KEY=... |
| 22 | gpt-researcher --query "should I invest in open-source AI infra?" |
| 23 | ``` |
Deep-research mode: recursive sub-queries with citation dedup.
2026-07-19
MCP server mode; Claude and Gemini provider fixes.
2026-07-02
Docx export, source-quality scoring, 2x faster crawls.
2026-06-11