gptr-mcp
MCP server for enabling LLM applications to perform deep research via the MCP protocol
GitHub Stars
238
User Rating
Not Rated
Favorites
0
Views
27
Forks
29
Issues
9
Installation
Difficulty
BeginnerEstimated Time
5-10 minutes
Installation
Installation
Prerequisites
Python: 3.7 or higher
Claude Desktop: Latest version
Installation Steps
1. Clone Repository
bash
git clone https://github.com/assafelovic/gptr-mcp.git
cd gptr-mcp
2. Install Dependencies
bash
pip install -r requirements.txt
3. Configure Claude Desktop
Edit~/Library/Application Support/Claude/claude_desktop_config.json to add the MCP server:
json
{
"mcpServers": {
"gptr-mcp": {
"command": "python",
"args": ["/absolute/path/to/gpt-researcher/gptr-mcp/server.py"],
"env": {
"OPENAI_API_KEY": "your-openai-key-here",
"TAVILY_API_KEY": "your-tavily-key-here"
}
}
}
}