webpage-mcp
Click on "Deploy 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., "@webpage-mcpSearch https://example.com for the section about pricing."
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.
webpage-mcp
A zero-config Model Context Protocol server that gives any MCP client — Claude Desktop, IDE assistants, or your own agents — the ability to fetch, read, and search the live web.
No API key. No database. No accounts. Point a client at it and it works.
Tools
Tool | What it does |
| Fetch a URL and return its readable text, with scripts, navigation, and page chrome stripped out. |
| Fetch a page and return only the passages most relevant to a query, ranked with BM25 — ideal for long pages or grounded answers. |
| List a page's hyperlinks as absolute URLs with their anchor text, optionally filtered by a substring. |
Related MCP server: internet-context-mcp
Why
Most "let an AI read the web" setups need an embeddings provider, an API key, and a vector database. This one needs none of that. Retrieval runs in-process with BM25, so it's instant, free, and private — the AI client supplies the reasoning, the server supplies the right passages.
Install
git clone https://github.com/Vl4dimirz/webpage-mcp.git
cd webpage-mcp
npm install
npm run buildUse with Claude Desktop
Add this to your claude_desktop_config.json:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"webpage": {
"command": "node",
"args": ["C:/absolute/path/to/webpage-mcp/dist/index.js"]
}
}
}Restart Claude Desktop. You can now ask things like:
"Use the webpage tools to summarize https://example.com/article."
"Search that page for what it says about pricing."
"List every link on the homepage that mentions careers."
Use from any MCP client
The server speaks MCP over stdio. Spawn node dist/index.js and connect with the official SDK:
import { Client } from "@modelcontextprotocol/sdk/client/index.js";
import { StdioClientTransport } from "@modelcontextprotocol/sdk/client/stdio.js";
const client = new Client({ name: "my-app", version: "1.0.0" });
await client.connect(new StdioClientTransport({ command: "node", args: ["dist/index.js"] }));
const result = await client.callTool({
name: "search_page",
arguments: { url: "https://en.wikipedia.org/wiki/Model_Context_Protocol", query: "who introduced it" },
});
console.log(result.content[0].text);How it works
Fetch + clean —
cheerioparses the HTML and removes non-content elements; the body is reduced to plain readable text. Same-URL calls within five minutes are served from a small in-memory cache.Search — the text is chunked with overlap and scored against the query with BM25 (
k1 = 1.5,b = 0.75), returning the top passages. No embeddings, no external calls.Links — anchors are resolved to absolute URLs, de-duplicated, and optionally filtered.
Tech
TypeScript · @modelcontextprotocol/sdk · cheerio · zod · Node 18+ (built-in fetch).
License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
Free web search for AI agents. No API key required. Hosted MCP in active development.
Docs: https://docs.keenable.ai/mcp-server Keenable is a free, remote MCP server that gives agents access to the web index. Search the web with ranked results and date/site filters, then fetch any indexed page as clean markdown. Works out of the box with no account or API key.
Agent-native MCP server over the public saagarpatel.dev corpus. Read-only, stateless.
Scrape, crawl and search the web for AI agents via MCP.
Related MCP Servers
- AlicenseAqualityAmaintenanceA local-first, no-API-key MCP server that enables LLMs to search the web, fetch pages, and read documents using multiple engines and smart fallbacks.1178MIT
- AlicenseNot gradedqualityCmaintenanceA read-only MCP server that gives AI agents the web as compact, ranked, verified evidence — no API keys, no cloud retrieval, all models local.17 npm1MIT
- AlicenseAqualityCmaintenanceA lightweight MCP server that gives AI assistants real-time web search and URL reading — no API keys required.2GPL 3.0
- FlicenseNot gradedqualityDmaintenanceMCP server that enables AI agents to search the web and extract clean Markdown content, with support for JavaScript rendering, structured data extraction, and screenshots.1-