research-tools
Автономный веб-исследовательский агент
Учебный проект: один Python-агент, который планирует, ищет в интернете, сохраняет заметки в RAG, пишет отчет, а затем критикует себя и повторяет цикл, пока ответ не станет достаточно хорошим.
Стек: Python 3.11+ · LangChain · LangGraph · MCP · Chroma RAG · LangSmith
Что вы создаете (карта урока)
Компонент | Файл | Задача |
Config |
| Читает |
LLM layer |
| Одна функция, много провайдеров |
Tools |
| Поиск + загрузка страниц |
MCP |
| Те же инструменты через протокол MCP |
RAG |
| Запоминает страницы в Chroma |
State |
| Записная книжка графа |
Nodes |
| Одна функция на шаг |
Graph |
| Собирает цикл |
CLI |
| Запуск из терминала |
API |
| Бэкенд на FastAPI |
Читайте TEACHING.md для полного урока.
Related MCP server: Local-MCP-server
Настройка
cd ~/Projects/autonomous-web-research-agent
python3.11 -m venv .venv
source .venv/bin/activate
pip install -e ".[dev]"
cp .env.example .envПоместите хотя бы один LLM-ключ в .env (OPENAI_API_KEY — путь по умолчанию). Поиск работает с бесплатным DuckDuckGo. Добавьте TAVILY_API_KEY позже, если хотите более качественный поиск. Добавьте LANGCHAIN_API_KEY для просмотра трассировок в LangSmith.
Запуск исследовательской задачи
python -m research_agent.cli "How does MCP differ from a normal LangChain tool?"Запуск бэкенда
python -m research_agent.api
# POST http://127.0.0.1:8001/research {"question": "..."}Запуск MCP-сервера (для Cursor / других хостов)
python -m research_agent.mcp_serverПример конфигурации Cursor MCP:
{
"mcpServers": {
"research-tools": {
"command": "/Users/YOU/Projects/autonomous-web-research-agent/.venv/bin/python",
"args": ["-m", "research_agent.mcp_server"]
}
}
}Тесты (ключ API не требуется)
pytestMaintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- Alicense-qualityCmaintenanceA Model Context Protocol server that exposes powerful web search and scraping tools to AI agents and MCP-compatible clients.Apache 2.0
- Flicense-qualityDmaintenanceEnables tool-calling LLMs to search the internet, capture website images, extract webpage text, and more via a local MCP server.14
- Alicense-qualityDmaintenanceWeb search, page fetching, and research from the terminal or any MCP client — no API key required.1MIT
- Alicense-qualityBmaintenanceA minimal MCP server for agent-friendly web extraction and search. Offers two tools: fetching real pages with Playwright and Crawl4AI, and searching across 7 engines with automatic fallback.33AGPL 3.0
Related MCP Connectors
Jina AI Reader/Search MCP — turn any URL into clean LLM-ready markdown, plus web search.
Agentic search over your Dewey document collections from any MCP-compatible client.
Turn a GitHub repo or docs site into agent-ready context: pack it or search it, over MCP.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/aabGit/Autonomous-Web-Research-Agent'
If you have feedback or need assistance with the MCP directory API, please join our Discord server