page-fetcher-mcp
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., "@page-fetcher-mcpscrape the text from https://example.com/article"
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.
Page Fetcher MCP Server
一个用于替代 Claude Code 内置 fetch 功能的 MCP (Model Context Protocol) 服务器,提供网页抓取和 API 数据获取能力。
功能特性
fetch_url: 从 URL 获取数据(API 端点、JSON 或任何网页内容)
scrape_url: 抓取并提取网页的可读文本内容
安装
npm install开发
构建项目
npm run build开发模式运行
npm run dev生产模式运行
npm start使用方法
在 Claude Code 中配置
将此服务器添加到 Claude Code 的 MCP 配置中:
{
"mcpServers": {
"page-fetcher-mcp": {
"command": "node",
"args": ["/path/to/page-fetcher-mcp/dist/index.js"],
"env": {}
}
}
}可用工具
fetch_url
获取任意 URL 的数据(API、JSON、网页内容等)
参数:
url(必需): 要获取的 URLheaders(可选): 要包含在请求中的 HTTP 头
示例:
// 获取 API 数据
await mcp_fetch_call_tool('fetch_url', {
url: 'https://api.github.com/users/octocat'
});
// 获取 JSON 数据
await mcp_fetch_call_tool('fetch_url', {
url: 'https://jsonplaceholder.typicode.com/posts/1'
});
// 带自定义头获取
await mcp_fetch_call_tool('fetch_url', {
url: 'https://api.example.com/data',
headers: {
'Authorization': 'Bearer YOUR_TOKEN'
}
});scrape_url
抓取网页并提取可读文本内容
参数:
url(必需): 要抓取的 URLselector(可选): CSS 选择器,用于提取特定元素
示例:
// 获取整个页面的文本内容
await mcp_fetch_call_tool('scrape_url', {
url: 'https://example.com'
});
// 使用 CSS 选择器提取特定内容
await mcp_fetch_call_tool('scrape_url', {
url: 'https://example.com',
selector: 'h1' // 只提取所有 h1 标题
});
// 提取文章内容
await mcp_fetch_call_tool('scrape_url', {
url: 'https://example.com/article',
selector: '.article-content'
});项目结构
page-fetcher-mcp/
├── src/
│ └── index.ts # 主服务器实现
├── dist/ # 编译输出目录
├── package.json # 项目配置
├── tsconfig.json # TypeScript 配置
└── README.md # 项目文档技术栈
Node.js
TypeScript
@modelcontextprotocol/sdk - MCP 协议 SDK
axios - HTTP 客户端
cheerio - HTML 解析和爬虫
许可证
MIT
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.
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/jialinhome/page-fetcher-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server