WebRead MCP
Performs web searches using DuckDuckGo and returns titles with links.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@WebRead MCPsearch for Python MCP server examples"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
WebRead MCP
A Model Context Protocol (MCP) server that enables AI assistants to read webpages and perform web searches.
Tools
read_webpage
Fetches a webpage via GET request and returns its text content.
Parameters:
url(required) - The URL to fetchmax_chars(optional, default: 500) - Maximum characters to returnoffset(optional, default: 0) - Starting character position for chunked readingraw_html(optional, default: false) - Return raw HTML instead of extracted text
Example:
{
"url": "https://example.com",
"max_chars": 1000,
"offset": 0
}web_search
Performs a web search using DuckDuckGo and returns titles with links.
Parameters:
query(required) - The search querypage(optional, default: 1) - Page number (1-based)
Example:
{
"query": "python tutorial",
"page": 1
}Related MCP server: DuckDuckGo MCP Server
Installation
From PyPI
pip install webread-mcpFrom Source
git clone <repository-url>
cd webreadmcp
pip install -e .Configuration
Add the server to your MCP client configuration:
If installed via pip
{
"mcpServers": {
"webread": {
"command": "python",
"args": ["-m", "webread_mcp"]
}
}
}Running Manually
python -m webread_mcpThe server communicates via stdio and will wait for MCP protocol messages.
Custom CA Bundle
{
"mcpServers": {
"webread": {
"command": "python",
"args": ["-m", "webread_mcp"],
"env": {
"SSL_CERT_FILE": "/path/to/corporate-ca-bundle.crt"
}
}
}
}Disable SSL Verification (Not Recommended)
{
"mcpServers": {
"webread": {
"command": "python",
"args": ["-m", "webread_mcp"],
"env": {
"WEBREAD_VERIFY_SSL": "false"
}
}
}
}Dependencies
mcp- Model Context Protocol SDKhttpx- HTTP clientbeautifulsoup4- HTML parsingduckduckgo_search- Web search
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityCmaintenanceEnables web searching through DuckDuckGo and fetching content from webpages. Provides search capabilities with configurable result limits and webpage content extraction for AI assistants.Last updated
- Flicense-qualityDmaintenanceEnables AI assistants to perform real-time web searches, fetch webpage content, and get search suggestions using DuckDuckGo's privacy-focused search engine.Last updated
- Alicense-qualityDmaintenanceEnables AI models to search the web using DuckDuckGo, scrape webpage content in markdown format, and browse/read local files for code analysis and debugging.Last updated301MIT
- Alicense-qualityDmaintenanceEnables AI assistants to search the web using DuckDuckGo and extract clean text content from websites for real-time research, with all processing happening locally for complete privacy.Last updated3MIT
Related MCP Connectors
LLM-ready web search + instant answers + URL-to-clean-text fetch for agents and RAG.
The best web search for your AI Agent
Read a URL as clean markdown, screenshot a website, url to PDF. Web access for agents, no signup.
Appeared in Searches
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/EvalVis/webreadmcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server