.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/assafelovic/gptr-mcp
home/mcp-servers/assafelovic/gptr-mcp
assafelovic avatar

gptr-mcp

byassafelovic· 3 MCP servers

Stars

360

Forks

64

Category

Research

View on GitHub

TL;DR

</div>

How to install gptr-mcp?

assafelovic/gptr-mcp
$git clone https://github.com/assafelovic/gptr-mcp

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install gptr-mcp by running `git clone https://github.com/assafelovic/gptr-mcp`, then use it for the current task and follow its documentation at https://github.com/assafelovic/gptr-mcp.

Files · 1

View on GitHub
README.md
1<div align="center" id="top">
2 
3<img src="https://github.com/assafelovic/gpt-researcher/assets/13554167/20af8286-b386-44a5-9a83-3be1365139c3" alt="Logo" width="80">
4 
5# 🔍 GPT Researcher MCP Server
6 
7[![Website](https://img.shields.io/badge/Official%20Website-gptr.dev-teal?style=for-the-badge&logo=world&logoColor=white&color=0891b2)](https://gptr.dev)
8[![Documentation](https://img.shields.io/badge/Documentation-DOCS-f472b6?logo=googledocs&logoColor=white&style=for-the-badge)](https://docs.gptr.dev/docs/gpt-researcher/mcp-server/getting-started)
9[![Discord Follow](https://dcbadge.vercel.app/api/server/QgZXvJAccX?style=for-the-badge&theme=clean-inverted&?compact=true)](https://discord.gg/QgZXvJAccX)
10 
11</div>
12 
13## Why GPT Researcher MCP?
14 
15While LLM apps can access web search tools with MCP, **GPT Researcher MCP delivers deep research results.** Standard search tools return raw results requiring manual filtering, often containing irrelevant sources and wasting context window space.
16 
17GPT Researcher autonomously explores and validates numerous sources, focusing only on relevant, trusted and up-to-date information. Though slightly slower than standard search (~30 seconds wait), it delivers:
18 
19- ✨ Higher quality information
20- 📊 Optimized context usage
21- 🔎 Comprehensive results
22- 🧠 Better reasoning for LLMs
23 
24## 💻 Claude Desktop Demo
25https://github.com/user-attachments/assets/ef97eea5-a409-42b9-8f6d-b82ab16c52a8
26 
27## 🚀 Quick Start with Claude Desktop
28 
29**Want to use this with Claude Desktop right away?** Here's the fastest path:
30 
311. **Install dependencies:**
32 ```bash
33 git clone https://github.com/assafelovic/gptr-mcp.git
34 pip install -r requirements.txt
35 ```
36 
372. **Set up your Claude Desktop config** at `~/Library/Application Support/Claude/claude_desktop_config.json`:
38 ```json
39 {
40 "mcpServers": {
41 "gptr-mcp": {
42 "command": "python",
43 "args": ["/absolute/path/to/gpt-researcher/gptr-mcp/server.py"],
44 "env": {
45 "OPENAI_API_KEY": "your-openai-key-here",
46 "TAVILY_API_KEY": "your-tavily-key-here"
47 }
48 }
49 }
50 }
51 ```
52 
533. **Restart Claude Desktop** and start researching! 🎉
54 
55For detailed setup instructions, see the [full Claude Desktop Integration section](#-claude-desktop-integration) below.
56 
57### Resources
58- `research_resource`: Get web resources related to a given task via research.
59 
60### Primary Tools
61 
62- `deep_research`: Performs deep web research on a topic, finding the most reliable and relevant information
63- `quick_search`: Performs a fast web search optimized for speed over quality, returning search results with snippets. Supports any GPTR supported web retriever such as Tavily, Bing, Google, etc... Learn more [here](https://docs.gptr.dev/docs/gpt-researcher/search-engines)
64- `write_report`: Generate a report based on research results
65- `get_research_sources`: Get the sources used in the research
66- `get_research_context`: Get the full context of the research
67 
68### Prompts
69 
70- `research_query`: Create a research query prompt
71 
72## Prerequisites
73 
74Before running the MCP server, make sure you have:
75 
761. Python 3.11 or higher installed
77 - **Important**: GPT Researcher >=0.12.16 requires Python 3.11+
782. API keys for the services you plan to use:
79 - [OpenAI API key](https://platform.openai.com/api-keys)
80 - [Tavily API key](https://app.tavily.com)
81 
82You can also connect any other web search engines or MCP using GPTR supported retrievers. Check out the [docs here](https://docs.gptr.dev/docs/gpt-researcher/search-engines)
83 
84## ⚙️ Installation
85 
861. Clone the GPT Researcher repository:
87```bash
88git clone https://github.com/assafelovic/gpt-researcher.git
89cd gpt-researcher
90```
91 
922. Install the gptr-mcp dependencies:
93```bash
94cd gptr-mcp
95pip install -r requirements.txt
96```
97 
983. Set up your environment variables:
99 - Copy the `.env.example` file to create a new file named `.env`:
100 ```bash
101 cp .env.example .env
102 ```
103 - Edit the `.env` file and add your API keys and config

Preview

assafelovic/gptr-mcpassafelovic/gptr-mcp

# 🔍 GPT Researcher MCP Server

[![Website](https://img.shields.io/badge/Official%20Website-gptr.dev-teal?style=for-the-badge&logo=world&logoColor=white&color=0891b2)](https://gptr.dev)

Repoassafelovic/gptr-mcp
TypeMCP Servers
CategoryResearch
UpdatedNov 2025
LicenseMIT
First seenJul 26, 2026

Tags

MCPdeep-researchdeepresearch

Related

6 picks
Type
  1. rudra-ravi avatarwikipedia-mcpMCP server for Wikipedia APIMCP ServersMay 2026113k275
  2. assafelovic avatargpt-researcherGPT Researcher is an autonomous agent designed for comprehensive online research on a variety of tasks.MCP ServersJul 202689k29k
  3. prashalruchiranga avatararxiv-mcp-serverMCP server for accesing arXiv APIMCP ServersAug 202576k40
  4. blazickjp avatararxiv-mcp-serverA Model Context Protocol server for searching and analyzing arXiv papersMCP ServersJul 202675k3.0k
  5. biocontext-ai avatarknowledgebase-mcpBioContextAI Knowledgebase MCP server for biomedical agentic AIMCP ServersJan 202666k28
  6. marcopesani avatarmcp-server-serperSerper MCP Server supporting search and webpage scrapingMCP ServersMar 202556k159