Gptr MCP MCP Server

While LLM apps can access web search tools with MCP, **GPT Researcher MCP delivers deep research results.** Standard search tools return raw results

Local serverstdioPython

What is the Gptr MCP MCP server?

Gptr MCP MCP server is a locally run integration for AI assistants that speak the Model Context Protocol. While LLM apps can access web search tools with MCP, GPT Researcher MCP delivers deep research results. Standard search tools return raw results requiring.

What you get

  • ✨ Higher quality information
  • 📊 Optimized context usage
  • 🔎 Comprehensive results
  • 🧠 Better reasoning for LLMs

What the assistant can call

Once Gptr MCP is connected, these are the calls the assistant has available:

  • deep_research — Performs deep web research on a topic, finding the most reliable and relevant information
  • quick_search — Performs a fast web search optimized for speed over quality, returning search results with snippets. Supports any GPTR supported web retriever such
  • write_report — Generate a report based on research results
  • get_research_sources — Get the sources used in the research
  • get_research_context — Get the full context of the research
  • Resources — The Resources tool exposed by this server
  • Prompts — The Prompts tool exposed by this server

Setting it up

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

Configuration and credentials

You will need 5 environment variables: OPENAI_API_KEY, TAVILY_API_KEY, MCP_TRANSPORT, YOUR_SESSION_ID, YOUR_ID. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Before running the MCP server, make sure you have: 1. Python 3.11 or higher installed - Important: GPT Researcher >=0.12.16 requires Python 3.11+ 2. API keys for the services you plan to use: - OpenAI API key - Tavily API key You can also connect any other web search engines or MCP using GPTR supported retrievers. Check out the

Choosing this one

Among the search and retrieval options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Gptr MCP's toolset — deep_research, quick_search, write_report and 4 more — is a fair guide to whether it matches your workflow. It is maintained by assafelovic; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the gptr mcp mcp server does with a few real requests.

Available tools

ToolWhat it does
deep_researchPerforms deep web research on a topic, finding the most reliable and relevant information
quick_searchPerforms 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/
write_reportGenerate a report based on research results
get_research_sourcesGet the sources used in the research
get_research_contextGet the full context of the research
ResourcesThe Resources tool exposed by this server.
PromptsThe Prompts tool exposed by this server.

How to install the Gptr MCP MCP server

{
  "mcpServers": {
    "gptr-mcp": {
      "command": "python",
      "args": ["/absolute/path/to/your/server.py"],
      "env": {
        "OPENAI_API_KEY": "your-actual-openai-key-here",
        "TAVILY_API_KEY": "your-actual-tavily-key-here"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

Before running the MCP server, make sure you have: 1. Python 3.11 or higher installed - Important: GPT Researcher >=0.12.16 requires Python 3.11+ 2. API keys for the services you plan to use: - OpenAI API key - Tavily API key You can also connect any other web search engines or MCP using GPTR supported retrievers. Check out the

VariableDescriptionRequired
OPENAI_API_KEYCredential the server authenticates with.Yes
TAVILY_API_KEYCredential the server authenticates with.Yes
MCP_TRANSPORTConfiguration value read at startup.Optional
YOUR_SESSION_IDConfiguration value read at startup.Optional
YOUR_IDConfiguration value read at startup.Optional

Example prompts to try

  • Use Gptr MCP to deep research.
  • Use Gptr MCP to quick search.
  • Use Gptr MCP to write report.

Frequently asked questions

It connects Gptr MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 7 tools (deep_research, quick_search, write_report, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Gptr MCP directly.