MCP Web Research Agent
Enables a local AI assistant to search the web via DuckDuckGo, fetch and extract readable text from web pages, and save research notes as Markdown files to a chosen directory.
README
MCP Web Research Agent for macOS
A Python Model Context Protocol (MCP) agent/server that gives a local AI assistant tools for:
search_web— public web search via DuckDuckGo HTML resultsfetch_url— fetch a public web page and extract readable textsave_note— save research notes as Markdown/text files in a folder you choose
The project also includes agent.py, a small local bridge that connects Ollama to the MCP server. Ollama runs the LLM; this project provides the MCP tools and the tool-calling agent loop.
Note: Ollama itself is a model server, not a native MCP client. To use Ollama with MCP tools, run
agent.pyhere or another MCP bridge/client.
What you need
- MacBook Pro with macOS
- Python 3.11 or newer (the
mcppackage requires Python 3.10+; setup prefers 3.13/3.12/3.11) - Ollama installed and running
- A tool-calling local model. Recommended starting point:
qwen2.5:7bfor 16 GB RAM Macsqwen2.5:14bif you have enough RAM/performanceqwen3:14bif your Ollama version supports it well
1. Install
Open Terminal and run:
cd ~/Projects
git clone <your-repo-url> mcp-web-research-agent # or copy this folder here
cd ~/Projects/mcp-web-research-agent
python3 -m venv .venv
source .venv/bin/activate
pip install --upgrade pip
pip install -r requirements.txt
If you do not have Python 3.11+:
brew install python
2. Install and start Ollama
Install Ollama from https://ollama.com or with Homebrew:
brew install --cask ollama
Open the Ollama app once, then pull a model:
ollama pull qwen2.5:7b
ollama serve
In another Terminal tab, verify Ollama is running:
curl http://localhost:11434/api/tags
3. Run the local Ollama MCP agent
From the project folder:
cd ~/Projects/mcp-web-research-agent
source .venv/bin/activate
python agent.py
Then ask something like:
Research recent MCP news, open the two best sources, summarize them, and save the summary as mcp-news.md.
One-shot mode:
python agent.py "Research current MCP SDK best practices and save notes."
Use a different model:
python agent.py --model qwen2.5:14b
Choose where notes are saved:
python agent.py --notes-dir ~/Documents/research-notes
4. Use with Claude Desktop
If you want Claude Desktop to connect directly to the MCP server, edit:
~/Library/Application Support/Claude/claude_desktop_config.json
Add:
{
"mcpServers": {
"web-research": {
"command": "/Users/YOUR_USERNAME/Projects/mcp-web-research-agent/.venv/bin/python",
"args": [
"/Users/YOUR_USERNAME/Projects/mcp-web-research-agent/server.py"
],
"env": {
"MCP_NOTES_DIR": "/Users/YOUR_USERNAME/Documents/MCP-research-notes"
}
}
}
}
Replace YOUR_USERNAME with your Mac username. Create the file if it does not exist. Restart Claude Desktop after editing.
5. Use with Cursor
Create or edit .cursor/mcp.json in a workspace:
{
"mcpServers": {
"web-research": {
"command": "/Users/YOUR_USERNAME/Projects/mcp-web-research-agent/.venv/bin/python",
"args": [
"/Users/YOUR_USERNAME/Projects/mcp-web-research-agent/server.py"
],
"env": {
"MCP_NOTES_DIR": "/Users/YOUR_USERNAME/Documents/MCP-research-notes"
}
}
}
}
Then restart Cursor or reload its MCP settings.
Tool reference
search_web(query: str, max_results: int = 5)
Returns search results as JSON:
{
"query": "Model Context Protocol",
"results": [
{
"title": "Example",
"url": "https://example.com",
"snippet": "..."
}
]
}
fetch_url(url: str, max_chars: int = 8000)
Fetches an http/https URL and returns extracted text. It avoids JavaScript rendering, so it works best on normal HTML pages.
save_note(filename: str, content: str)
Saves a note to MCP_NOTES_DIR. The default directory is:
~/MCPWebResearch/notes
The tool sanitizes filenames and blocks path traversal.
Configuration
Environment variables:
OLLAMA_MODEL— default model used byagent.py; default isqwen2.5:7bOLLAMA_URL— OpenAI-compatible Ollama chat endpoint; default ishttp://localhost:11434/v1/chat/completionsMCP_NOTES_DIR— directory for saved notes
Example:
export OLLAMA_MODEL=qwen2.5:14b
export MCP_NOTES_DIR=~/Documents/research-notes
python agent.py
Troubleshooting
Connection refused to localhost:11434
Ollama is not running. Start it with:
ollama serve
The agent does not call tools
Use a model with strong tool-calling support. qwen2.5:7b, qwen2.5:14b, and similar Qwen models are good starting points.
A page returns little text
Some websites block non-browser clients or require JavaScript. Try a different source, or use search_web and fetch_url together.
Claude Desktop does not show the server
Double-check that:
- The Python path points to
.venv/bin/pythoninside this project - The
server.pypath is absolute - The JSON file has valid syntax
- You fully restarted Claude Desktop
Files
server.py— MCP server with web research toolsagent.py— local Ollama-powered MCP client/agent looprequirements.txt— Python dependencies
Safety notes
- This server can fetch public URLs and search the public web.
- It can write files only into
MCP_NOTES_DIR. - It does not execute shell commands.
- Review saved notes and citations before relying on them.
Second MCP agent: Local Planner
The repo now includes a second MCP server/agent: local-planner. It stores projects, tasks, and Markdown notes on disk.
What it does
Tools:
create_project(name, description)list_projects()create_task(project, title, notes, priority, due_date, status)list_tasks(project, status)update_task(project, task_id, ...)complete_task(project, task_id)delete_task(project, task_id)save_project_note(project, content, append)get_daily_focus(for_date)
Default data directory:
~/MCPPlanner
Override it with:
export MCP_PLANNER_DIR=~/Documents/my-planner
Run the Ollama planner
bash run-planner.sh
One-shot:
bash run-planner.sh "Create a project called Weekend Yard Work with tasks for mowing, trimming bushes, and buying mulch."
Use a different model:
bash run-planner.sh --model qwen2.5:14b
Store planner data elsewhere:
bash run-planner.sh --data-dir ~/Documents/planner-data
Good planner prompts
Create a project called Home Network Upgrade and break it into at least six tasks with priorities.
Look at my daily focus and tell me what I should work on first.
Create a moving checklist project with tasks, due dates, and notes.
Mark the first task in the Weekend Yard Work project complete and tell me what remains.
Claude Desktop config for planner
Use:
claude_desktop_config.planner.example.json
Add it to:
~/Library/Application Support/Claude/claude_desktop_config.json
You can merge both servers under mcpServers so Claude sees web research and planning tools.
Cursor config for planner
Use:
cursor-mcp.planner.example.json
Files
planner_server.py— MCP server for projects/tasks/notesplanner_agent.py— Ollama bridge/agent for the plannerrun-planner.sh— launcher
Third MCP agent: Health & Habit Tracker
The repo includes a third MCP server/agent for tracking habits, workouts, meals, and body measurements. All data is stored locally under MCP_HEALTH_DIR (default ~/MCPHealth).
This tool is for personal tracking only and does not provide medical advice.
Tools
create_habit(name, description, target_per_week, unit)list_habits(active_only)log_habit(log_date, value, notes, habit_id|habit_name)log_workout(activity, duration_minutes, log_date, intensity, calories, distance_km, notes)log_meal(description, meal_type, log_date, calories, protein_g, carbs_g, fat_g, notes)log_measurement(weight_kg, log_date, body_fat_pct, waist_cm, notes)list_logs(log_type, from_date, to_date, limit)delete_log(log_id)save_health_note(content, append)get_daily_summary(for_date)get_weekly_report(for_date)
Run with Ollama
bash run-health.sh
One-shot:
bash run-health.sh "Create habits for a 30-min walk, drinking water, and stretching, then log today's walk and a lunch salad."
Use a different model or data directory:
bash run-health.sh --model qwen2.5:14b --data-dir ~/Documents/health-data
Good prompts
Create habits for walking 5 days per week, drinking 80 oz of water, and stretching daily.
Log a 45-minute moderate run today that burned 420 calories and covered 6 km.
Log my breakfast: oatmeal with banana and peanut butter, about 520 calories and 22 grams of protein.
Give me today's health summary and list habits I still need to complete.
Give me my weekly report and tell me which habits I'm behind on.
Claude Desktop / Cursor configs
claude_desktop_config.health.example.jsoncursor-mcp.health.example.json
You can run all three MCP servers together (web research, planner, health) by listing each under mcpServers.
Files
health_server.py— MCP serverhealth_agent.py— Ollama bridge/agentrun-health.sh— launcher
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。