{"id":26454372,"url":"https://github.com/riii111/researchmcp","last_synced_at":"2026-04-06T08:31:11.260Z","repository":{"id":282398393,"uuid":"948448894","full_name":"riii111/ResearchMCP","owner":"riii111","description":"Multi-Search API Aggregator Server built with Deno + Hono","archived":false,"fork":false,"pushed_at":"2025-04-03T13:53:00.000Z","size":365,"stargazers_count":4,"open_issues_count":15,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-03T14:26:18.637Z","etag":null,"topics":["deno","hono","mcp-server"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/riii111.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-03-14T11:03:41.000Z","updated_at":"2025-04-03T13:53:03.000Z","dependencies_parsed_at":"2025-03-14T12:39:41.134Z","dependency_job_id":null,"html_url":"https://github.com/riii111/ResearchMCP","commit_stats":null,"previous_names":["riii111/researchmcp"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/riii111/ResearchMCP","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riii111%2FResearchMCP","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riii111%2FResearchMCP/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riii111%2FResearchMCP/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riii111%2FResearchMCP/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/riii111","download_url":"https://codeload.github.com/riii111/ResearchMCP/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riii111%2FResearchMCP/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31464604,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-05T21:22:52.476Z","status":"online","status_checked_at":"2026-04-06T02:00:07.287Z","response_time":112,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["deno","hono","mcp-server"],"created_at":"2025-03-18T19:57:23.729Z","updated_at":"2026-04-06T08:31:11.243Z","avatar_url":"https://github.com/riii111.png","language":"TypeScript","funding_links":[],"categories":["Search \u0026 Data Extraction"],"sub_categories":["How to Submit"],"readme":"# ResearchMCP\n\nA research tool that combines the Model Context Protocol (MCP) with Brave Search, Tavily Search,\netc. to achieve research capabilities equivalent to (or aiming to be equivalent to) ChatGPT's\nDeepResearch.\n\n## Technology Stack\n\n- **Runtime**: Deno\n- **Framework**: Hono\n- **Error Handling**: Neverthrow (Result\u003cT, E\u003e pattern)\n- **Deployment**: Docker container\n\n## Setup\n\n### Local Development\n\n1. Install [Deno](https://deno.land/)\n2. Clone the repository\n3. Set environment variables\n   - `BRAVE_API_KEY`: Brave Search API key\n   - `TAVILY_API_KEY`: Tavily Search API key (optional)\n4. Run the application:\n\n   ```bash\n   make dev  # HTTP server\n   make mcp  # MCP server for Claude Desktop\n   ```\n\n### Container Environment\n\n1. Install Docker and Docker Compose\n2. Set environment variables in a `.env` file\n3. Build and run the container:\n\n   ```bash\n   make d-build\n   make d-up\n   ```\n\n## Development Commands\n\n```bash\n# Local development\nmake dev     # Start HTTP server with watch mode\nmake mcp     # Start MCP server for Claude Desktop\nmake test    # Run tests\nmake lint    # Run linter\nmake format  # Format code\nmake check   # Type check\n\n# Docker development\nmake d-build  # Build the image\nmake d-dev    # Start container with live reload\nmake d-up     # Run in background\nmake d-logs   # View logs\nmake d-down   # Stop container\n```\n\n## MCP Integration with Claude Desktop\n\n1. Run the MCP server: `make mcp`\n2. In Claude Desktop, add a new MCP server with the following configuration:\n\n   ```json\n   {\n     \"mcpServers\": {\n       \"MCPSearch\": {\n         \"description\": \"Web search powered by Brave, Tavily, etc.\",\n         \"command\": \"/absolute/path/to/ResearchMCP/cli.ts\",\n         \"args\": [],\n         \"transport\": \"stdio\",\n         \"env\": {\n           \"BRAVE_API_KEY\": \"your_brave_api_key_here\",\n           \"TAVILY_API_KEY\": \"your_tavily_api_key_here\"\n         }\n       }\n     }\n   }\n   ```\n\n   Replace `/absolute/path/to/ResearchMCP/cli.ts` with the actual path to the cli.ts file.\n\n### Known Limitations\n\n- **Language Support**: Brave Search API has limited support for non-Latin characters. Searches in\n  Japanese, Chinese, Korean, and other non-Latin script languages may fail with encoding errors. For\n  best results, use English queries.\n\n### Features\n\n- **Web Search**: Search the web using Brave Search API through Claude Desktop\n- **MCP Protocol**: Full compliance with the Model Context Protocol\n- **Caching**: Search results are cached to improve performance and reduce API calls\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Friii111%2Fresearchmcp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Friii111%2Fresearchmcp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Friii111%2Fresearchmcp/lists"}