Deep Research
HTTP-SSEMCP server for comprehensive web research and markdown document generation
MCP server for comprehensive web research and markdown document generation
Welcome to the Deep Research MCP repository! This project provides a server compliant with the Model Context Protocol (MCP). It is designed to facilitate comprehensive web research. By utilizing Tavily's Search and Crawl APIs, the server gathers detailed information on various topics and structures this data to support high-quality markdown document creation using large language models (LLMs).
To get started with Deep Research MCP, follow these steps:
Clone the repository:
git clone https://github.com/ali-kh7/deep-research-mcp.git
Navigate to the project directory:
cd deep-research-mcp
Install the dependencies:
npm install
Run the server:
npm start
You can also check the Releases section for downloadable files and specific versions.
Once the server is running, you can interact with it via the API. Here’s how to use it effectively:
Send a request to gather information:
You can send a request to the server with a specific topic to gather data. The server will return structured information ready for markdown generation.
Example request:
POST /api/research Content-Type: application/json { "topic": "Artificial Intelligence" }
Receive structured data:
The server responds with data in a structured format. This data can be used directly or transformed into markdown documents.
Generate markdown documents:
The structured data can be converted into markdown using the provided functions in the API.
# Artificial Intelligence ## Overview Artificial Intelligence (AI) refers to the simulation of human intelligence in machines. ## Applications - Healthcare - Finance - Transportation ## Conclusion AI is transforming industries and shaping the future.
For detailed API documentation, please refer to the docs folder in this repository. It contains information on all available endpoints, request formats, and response structures.
We welcome contributions to improve Deep Research MCP. If you want to contribute, please follow these steps:
Fork the repository.
Create a new branch:
git checkout -b feature/YourFeatureName
Make your changes.
Commit your changes:
git commit -m "Add your message here"
Push to the branch:
git push origin feature/YourFeatureName
Open a Pull Request.
This project is licensed under the MIT License. See the LICENSE file for details.
If you encounter any issues or have questions, please check the Releases section or open an issue in the repository.
Thank you for checking out Deep Research MCP! We hope this tool enhances your web research capabilities. Happy coding!