my_mcp
by jaideepsai-narayan
Overview
Provides DuckDuckGo search and Open-Meteo weather information as MCP tools for agent integration.
Installation
python duckduckgo_mcp_server.pySecurity Notes
Multiple `requests.get` calls across different files (`duckduckgo_mcp_http.py`, `weather.py`, `duckduckgo_mcp_server.py`) explicitly disable SSL certificate verification (`verify=False`). This makes the application vulnerable to Man-in-the-Middle attacks, allowing an attacker to intercept and potentially modify communications with external APIs (DuckDuckGo, Open-Meteo). Additionally, `urllib3` warnings are disabled in `duckduckgo_mcp_http.py`, suppressing a critical security alert.
Similar Servers
ddg_search
Provides an MCP server for web search via DuckDuckGo and AI-powered answers from IAsk AI and Monica.
mcp
Provides a Model Context Protocol (MCP) interface for AI models to access MDN Web Docs for searching, retrieving full documentation as markdown, and querying browser compatibility data.
mcp-gemini-grounded-search
Provides grounded search functionality using Google's Gemini API, allowing MCP clients to perform web searches and retrieve up-to-date information with sources.
mcp-server-requests
An MCP server that provides HTTP request capabilities, enabling LLMs to fetch and process web content, including saving to files.