You signed in with another tab or window. Reload
to refresh your session. You signed out in another tab or window. Reload
to refresh your session. You switched accounts on another tab or window. Reload
to refresh your session. Dismiss alert
riii111 / ResearchMCP Public
Multi-Search API Aggregator Server built with Deno + Hono
4 stars
0 forks
Branches
Tags
Activity
Notifications
You must be signed in to change notification settings
main
Go to file
Code
| Name | | Name | Last commit message | Last commit date |
| --- | --- | --- | --- |
| Latest commit
-------------
History
-------
176 Commits
| | |
| .vscode | | .vscode | Fix: deno-ts error | Mar 14, 2025 |
| docker | | docker | refactor: improved container size | Mar 18, 2025 |
| src | | src | refactor: max result to env variable | Mar 20, 2025 |
| tests | | tests | Update McpController_test.ts | Mar 19, 2025 |
| .dockerignore | | .dockerignore | refactor: improved container size | Mar 18, 2025 |
| .env.example | | .env.example | refactor: max result to env variable | Mar 20, 2025 |
| .gitignore | | .gitignore | chore: delete .deno/ and added ignore | Mar 15, 2025 |
| Makefile | | Makefile | feat. JSON-RPC | Mar 16, 2025 |
| README.md | | README.md | update readme | Mar 27, 2025 |
| cli.ts | | cli.ts | refactor: unified implementation policy | Mar 20, 2025 |
| compose.yml | | compose.yml | Update compose.yml | Mar 20, 2025 |
| deno.json | | deno.json | feat. JSON-RPC | Mar 16, 2025 |
| deno.lock | | deno.lock | Update deno.lock | Mar 20, 2025 |
| main.ts | | main.ts | refactor: use match | Mar 20, 2025 |
| tsconfig.json | | tsconfig.json | chore: deno.ns error | Mar 14, 2025 |
| View all files | | |
A research tool that combines the Model Context Protocol (MCP) with Brave Search, Tavily Search, etc. to achieve research capabilities equivalent to (or aiming to be equivalent to) ChatGPT's DeepResearch.
Install Deno
Clone the repository
Set environment variables
BRAVE_API_KEY
: Brave Search API keyTAVILY_API_KEY
: Tavily Search API key (optional)shell
make dev # HTTP server
make mcp # MCP server for Claude Desktop
Install Docker and Docker Compose
Set environment variables in a .env
file
Build and run the container:
shell
make d-build
make d-up
# Local development
make dev # Start HTTP server with watch mode
make mcp # Start MCP server for Claude Desktop
make test # Run tests
make lint # Run linter
make format # Format code
make check # Type check
# Docker development
make d-build # Build the image
make d-dev # Start container with live reload
make d-up # Run in background
make d-logs # View logs
make d-down # Stop container
Run the MCP server: make mcp
In Claude Desktop, add a new MCP server with the following configuration:
json
{
"mcpServers": {
"MCPSearch": {
"description": "Web search powered by Brave, Tavily, etc.",
"command": "/absolute/path/to/ResearchMCP/cli.ts",
"args": [],
"transport": "stdio",
"env": {
"BRAVE_API_KEY": "your_brave_api_key_here",
"TAVILY_API_KEY": "your_tavily_api_key_here"
}
}
}
}
Replace /absolute/path/to/ResearchMCP/cli.ts
with the actual path to the cli.ts file.
Multi-Search API Aggregator Server built with Deno + Hono
No releases published
No packages published
You can’t perform that action at this time.