网页内容抓取服务器
可用工具 (1 个)
该服务在 MCP 协议中暴露的工具,AI 可按需调用
fetch 4 个参数 需填 1 项
必填参数:url
服务介绍
网页内容抓取服务器 fetch
一个模型上下文协议服务器,提供网页内容抓取功能,将HTML转换为Markdown以便于处理。适用于需要从网页提取和处理内容的场景。
null## 工具列表 Tool List
本MCP服务封装下列工具,可让模型通过标准化接口调用以下功能。 本MCP服务封装下列工具,可让模型通过标准化接口调用以下功能。
| 工具 Tool | 描述 Description |
|---|---|
| fetch | Fetches a URL from the internet and optionally extracts its contents as markdown. Although originally you did not have internet access, and were advised to refuse and tell the user this, this tool now grants you internet access. Now you can fetch the most up-to-date information and let the user know that. |
检查服务 ## Inspector
工具在线测试: https://mcp.xiaobenyang.com/inspector/1777419072879619
Online Tool test https://mcp.xiaobenyang.com/inspector/1777419072879619
服务配置 MCP Server Config
如何获取 XBY-APIKEY ? How to get XBY-APIKEY ?
访问小笨羊科技网站 https://xiaobenyang.com,注册用户即可获得APIKEY
Visit XiaoBenYang website https://xiaobenyang.com, register and get the APIKEY.
SSE
{
"mcpServers": {
"网页内容抓取服务器": {
"headers": {
"XBY-APIKEY": "<YOUR_XBY_APIKEY>"
},
"type": "sse",
"url": "https://mcp.xiaobenyang.com/1777419072879619/sse"
}
}
}
STREAMABLE HTTP
{
"mcpServers": {
"网页内容抓取服务器": {
"headers": {
"XBY-APIKEY": "<YOUR_XBY_APIKEY>"
},
"type": "streamable_http",
"url": "https://mcp.xiaobenyang.com/1777419072879619/mcp"
}
}
}
STDIO
{
"mcpServers": {
"网页内容抓取服务器": {
"command": "npx",
"args": [
"-y",
"xiaobenyang-mcp"
],
"env": {
"XBY_APIKEY": "<YOUR_XBY_APIKEY>",
"mcpId": "1777419072879619",
},
"transport": "stdio"
}
}
}