Ai Research Agent MCP
A

Ai Research Agent MCP

An autonomous AI research agent based on the MCP protocol, capable of completing the full research process such as web search, knowledge base retrieval, code writing, chart generation, and report writing through a single prompt.
2.5 points
0

What is an AI Research Engineer?

An AI Research Engineer is an intelligent research assistant that can understand your research needs and automatically execute multi-step research processes. All you need to do is provide a research topic or question, and it will: 1. Search the web for the latest information 2. Query your personal knowledge base 3. Write and run code for analysis 4. Generate visual charts 5. Create a complete research report 6. Self-assess the quality of the research results All operations are completed in a secure sandbox environment to ensure the safety of code execution.

How to use an AI Research Engineer?

It's very simple to use: 1. Install and configure in Claude Desktop or Cursor IDE 2. Enter your research requirements 3. Wait for the AI to automatically complete all the work 4. View the generated research reports and files For example, you can enter: 'Research the market trends of electric vehicles in 2026 and create a growth forecast chart', and the AI will automatically complete all research, analysis, and report generation work.

Applicable Scenarios

This tool is particularly suitable for the following scenarios: • AI engineers conducting technical research • Entrepreneurs analyzing market opportunities • Students completing research projects • Analysts generating data reports • Developers validating prototypes • Knowledge workers organizing information Whether it's technical research, market analysis, academic research, or data visualization, you can quickly obtain professional-level research results.

Main Features

Intelligent Web Research
Automatically search the web for the latest information, support DuckDuckGo and Brave Search, and extract the main content of web pages and organize it into structured data.
Personal Knowledge Base Retrieval
Use RAG technology to retrieve your personal notes, documents, and knowledge base, combine personal knowledge with web information, and provide personalized research results.
Secure Code Execution
Safely execute Python code in an isolated sandbox environment, support operations such as data analysis, visualization, and modeling, and automatically capture output and charts.
Automatic Report Generation
Automatically organize research results into a structured Markdown report, including data sources, analysis processes, code, and visual charts.
Self-Quality Assessment
Automatically assess the quality of research results, score from multiple dimensions such as clarity, data accuracy, and completeness, and provide improvement suggestions.
Structured File Management
Automatically organize research output files, store reports, code, charts, and data by date and task, making it easy for subsequent review and reuse.
Advantages
🚀 Complete complex research with one click: Automatically complete from search to report
🔒 Secure and reliable: Code is executed in an isolated sandbox to protect system security
📚 Personalized research: Provide customized results by combining personal knowledge base
💾 Local-first: Use local models by default to protect privacy and no API key is required
📊 Rich visualization: Automatically generate professional-level charts and visualizations
🔄 Reproducible research: Completely record the research process and the results can be reproduced
Limitations
⚠️ Dependent on network connection: Need the network for searching (local knowledge base can be configured)
⚠️ Code limitations: Only support Python and limited by the libraries allowed in the sandbox
⚠️ Need configuration: Installation and environment configuration are required for the first use
⚠️ Research depth: Manual verification may be required in complex professional fields
⚠️ File format: Mainly support text formats, and the processing of complex documents is limited

How to Use

Installation Preparation
Ensure that Python 3.10+、Claude Desktop or Cursor IDE, and Git are installed. It is recommended to use the uv tool to speed up the installation.
Clone and Install
Download the project code and install the dependency packages. Using uv can significantly speed up the installation.
Configure Claude Desktop
Edit the Claude Desktop configuration file and add the MCP server configuration. Note to use the absolute path.
Start Research
Restart Claude Desktop, enter your research requirements in the chat box, and the AI will automatically start working.

Usage Examples

Market Trend Analysis
Analyze the market development trends of a certain industry or technology, and generate data reports and prediction charts.
Technical Comparison Research
Compare the advantages and disadvantages of different technical solutions, and conduct quantitative analysis and visual display.
Financial Model Construction
Build a financial calculator or investment analysis model, and conduct data analysis and visualization.
Academic Literature Review
Collect and organize the research status of an academic field, and generate a literature review report.

Frequently Asked Questions

Do I need a paid API key?
Is code execution safe?
Which file formats are supported for the knowledge base?
Where are the research results saved?
How to add a personal knowledge base?
Does it support Chinese search and research?
Can the research process be reproduced?
What should I do if I encounter installation problems?

Related Resources

GitHub Repository
Project source code, latest version, and issue tracking
Video Demonstration
Complete function demonstration video, showing the whole process from installation to use
MCP Official Documentation
Official documentation and specifications of the Model Context Protocol
Claude Desktop
Download the Claude Desktop client
uv Installation Guide
Installation and use of the fast Python package management tool uv

Installation

Copy the following command to your Client for configuration
{
  "mcpServers": {
    "research-engineer": {
      "command": "/absolute/path/to/python",
      "args": [
        "/absolute/path/to/ai-research-agent-mcp/server/src/server.py"
      ],
      "env": {
        "BRAVE_API_KEY": "your_brave_api_key_here_or_remove_this_line",
        "ANTHROPIC_API_KEY": "your_anthropic_api_key_here_or_remove_this_line",
        "SEARCH_PROVIDER": "duckduckgo",
        "MAX_SEARCH_RESULTS": "10",
        "EMBEDDING_MODEL": "all-MiniLM-L6-v2",
        "USE_LOCAL_EMBEDDINGS": "true",
        "VECTOR_DB_PATH": "/absolute/path/to/ai-research-agent-mcp/data/vector_db",
        "CHUNK_SIZE": "1000",
        "CHUNK_OVERLAP": "200",
        "SANDBOX_TIMEOUT": "30",
        "SANDBOX_MAX_MEMORY_MB": "512",
        "ALLOWED_PACKAGES": "numpy,pandas,matplotlib,seaborn,scipy,scikit-learn",
        "RESEARCH_RUNS_DIR": "/absolute/path/to/ai-research-agent-mcp/research_runs",
        "KNOWLEDGE_BASE_DIR": "/absolute/path/to/ai-research-agent-mcp/knowledge_base",
        "LOG_LEVEL": "INFO",
        "LOG_FILE": "/absolute/path/to/ai-research-agent-mcp/logs/research_engineer.log"
      }
    }
  }
}

{
  "mcpServers": {
    "research-engineer": {
      "command": "/Users/yourname/Projects/ai-research-agent-mcp/server/venv/bin/python3.11",
      "args": [
        "/Users/yourname/Projects/ai-research-agent-mcp/server/src/server.py"
      ],
      "env": {
        "SEARCH_PROVIDER": "duckduckgo",
        "MAX_SEARCH_RESULTS": "10",
        "USE_LOCAL_EMBEDDINGS": "true",
        "EMBEDDING_MODEL": "all-MiniLM-L6-v2",
        "VECTOR_DB_PATH": "/Users/yourname/Projects/ai-research-agent-mcp/data/vector_db",
        "RESEARCH_RUNS_DIR": "/Users/yourname/Projects/ai-research-agent-mcp/research_runs",
        "KNOWLEDGE_BASE_DIR": "/Users/yourname/Projects/ai-research-agent-mcp/knowledge_base",
        "LOG_FILE": "/Users/yourname/Projects/ai-research-agent-mcp/logs/research_engineer.log"
      }
    }
  }
}

{
  "mcpServers": {
    "research-engineer": {
      "command": "uv",
      "args": [
        "run",
        "--directory",
        "/Users/yourname/Projects/ai-research-agent-mcp/server",
        "python",
        "src/server.py"
      ],
      "env": {
        "SEARCH_PROVIDER": "duckduckgo",
        "MAX_SEARCH_RESULTS": "10",
        "USE_LOCAL_EMBEDDINGS": "true",
        "EMBEDDING_MODEL": "all-MiniLM-L6-v2",
        "VECTOR_DB_PATH": "/Users/yourname/Projects/ai-research-agent-mcp/data/vector_db",
        "RESEARCH_RUNS_DIR": "/Users/yourname/Projects/ai-research-agent-mcp/research_runs",
        "KNOWLEDGE_BASE_DIR": "/Users/yourname/Projects/ai-research-agent-mcp/knowledge_base",
        "LOG_FILE": "/Users/yourname/Projects/ai-research-agent-mcp/logs/research_engineer.log"
      }
    }
  }
}

{
  "mcpServers": {
    "research-engineer": {
      "command": "C:/Users/yourname/Projects/ai-research-agent-mcp/server/venv/Scripts/python.exe",
      "args": [
        "C:/Users/yourname/Projects/ai-research-agent-mcp/server/src/server.py"
      ],
      "env": {
        "SEARCH_PROVIDER": "duckduckgo",
        "MAX_SEARCH_RESULTS": "10",
        "USE_LOCAL_EMBEDDINGS": "true",
        "EMBEDDING_MODEL": "all-MiniLM-L6-v2",
        "VECTOR_DB_PATH": "C:/Users/yourname/Projects/ai-research-agent-mcp/data/vector_db",
        "RESEARCH_RUNS_DIR": "C:/Users/yourname/Projects/ai-research-agent-mcp/research_runs",
        "KNOWLEDGE_BASE_DIR": "C:/Users/yourname/Projects/ai-research-agent-mcp/knowledge_base",
        "LOG_FILE": "C:/Users/yourname/Projects/ai-research-agent-mcp/logs/research_engineer.log"
      }
    }
  }
}

{
  "mcpServers": {
    // Remove this entire block:
    // "research-engineer": { ... }
  }
}
Note: Your key is sensitive information, do not share it with anyone.

Alternatives

A
Airweave
Airweave is an open - source context retrieval layer for AI agents and RAG systems. It connects and synchronizes data from various applications, tools, and databases, and provides relevant, real - time, multi - source contextual information to AI agents through a unified search interface.
Python
5.9K
5 points
V
Vestige
Vestige is an AI memory engine based on cognitive science. By implementing 29 neuroscience modules such as prediction error gating, FSRS - 6 spaced repetition, and memory dreaming, it provides long - term memory capabilities for AI. It includes a 3D visualization dashboard and 21 MCP tools, runs completely locally, and does not require the cloud.
Rust
4.5K
4.5 points
F
Finlab Ai
FinLab AI is a quantitative financial analysis platform that helps users discover excess returns (alpha) in investment strategies through AI technology. It provides a rich dataset, backtesting framework, and strategy examples, supporting automated installation and integration into mainstream AI programming assistants.
5.4K
4 points
A
Apify MCP Server
The Apify MCP Server is a tool based on the Model Context Protocol (MCP) that allows AI assistants to extract data from websites such as social media, search engines, and e-commerce through thousands of ready-to-use crawlers, scrapers, and automation tools (Apify Actors). It supports OAuth and Skyfire proxy payment and can be integrated into MCP clients such as Claude and VS Code through HTTPS endpoints or local stdio.
TypeScript
6.4K
5 points
P
Praisonai
PraisonAI is a production-ready multi-AI agent framework with self-reflection capabilities, designed to create AI agents to automate the solution of various problems from simple tasks to complex challenges. It simplifies the construction and management of multi-agent LLM systems by integrating PraisonAI agents, AG2, and CrewAI into a low-code solution, emphasizing simplicity, customization, and effective human-machine collaboration.
Python
10.4K
5 points
H
Haiku.rag
Haiku RAG is an intelligent retrieval - augmented generation system built on LanceDB, Pydantic AI, and Docling. It supports hybrid search, re - ranking, Q&A agents, multi - agent research processes, and provides local - first document processing and MCP server integration.
Python
9.1K
5 points
M
Maverick MCP
MaverickMCP is a personal stock analysis server based on FastMCP 2.0, providing professional level financial data analysis, technical indicator calculation, and investment portfolio optimization tools for MCP clients such as Claude Desktop. It comes pre-set with 520 S&P 500 stock data, supports multiple technical analysis strategies and parallel processing, and can run locally without complex authentication.
Python
11.1K
4 points
K
Klavis
Klavis AI is an open-source project that provides a simple and easy-to-use MCP (Model Context Protocol) service on Slack, Discord, and Web platforms. It includes various functions such as report generation, YouTube tools, and document conversion, supporting non-technical users and developers to use AI workflows.
TypeScript
20.6K
5 points
N
Notion Api MCP
Certified
A Python-based MCP Server that provides advanced to-do list management and content organization functions through the Notion API, enabling seamless integration between AI models and Notion.
Python
20.3K
4.5 points
M
Markdownify MCP
Markdownify is a multi-functional file conversion service that supports converting multiple formats such as PDFs, images, audio, and web page content into Markdown format.
TypeScript
34.2K
5 points
G
Gitlab MCP Server
Certified
The GitLab MCP server is a project based on the Model Context Protocol that provides a comprehensive toolset for interacting with GitLab accounts, including code review, merge request management, CI/CD configuration, and other functions.
TypeScript
25.4K
4.3 points
D
Duckduckgo MCP Server
Certified
The DuckDuckGo Search MCP Server provides web search and content scraping services for LLMs such as Claude.
Python
72.3K
4.3 points
U
Unity
Certified
UnityMCP is a Unity editor plugin that implements the Model Context Protocol (MCP), providing seamless integration between Unity and AI assistants, including real - time state monitoring, remote command execution, and log functions.
C#
31.0K
5 points
F
Figma Context MCP
Framelink Figma MCP Server is a server that provides access to Figma design data for AI programming tools (such as Cursor). By simplifying the Figma API response, it helps AI more accurately achieve one - click conversion from design to code.
TypeScript
64.3K
4.5 points
G
Gmail MCP Server
A Gmail automatic authentication MCP server designed for Claude Desktop, supporting Gmail management through natural language interaction, including complete functions such as sending emails, label management, and batch operations.
TypeScript
21.0K
4.5 points
M
Minimax MCP Server
The MiniMax Model Context Protocol (MCP) is an official server that supports interaction with powerful text-to-speech, video/image generation APIs, and is suitable for various client tools such as Claude Desktop and Cursor.
Python
47.4K
4.8 points
AIBase
Zhiqi Future, Your AI Solution Think Tank
© 2026AIBase