Fetch MCP Server
OfficialFetch MCP Server
Сервер протокола Model Context Protocol, предоставляющий возможности получения веб-контента. Этот сервер позволяет LLM извлекать и обрабатывать контент с веб-страниц, преобразуя HTML в markdown для более удобного чтения.
[!CAUTION] Этот сервер может получать доступ к локальным/внутренним IP-адресам и может представлять угрозу безопасности. Будьте осторожны при использовании этого MCP-сервера, чтобы убедиться, что это не приведет к раскрытию конфиденциальных данных.
Инструмент fetch обрезает ответ, но с помощью аргумента start_index вы можете указать, откуда начать извлечение контента. Это позволяет моделям читать веб-страницу по частям, пока они не найдут нужную информацию.
Доступные инструменты
fetch— извлекает URL из интернета и преобразует его содержимое в markdown.url(строка, обязательно): URL для извлеченияmax_length(целое число, необязательно): Максимальное количество символов для возврата (по умолчанию: 5000)start_index(целое число, необязательно): Начальный индекс символа для извлечения контента (по умолчанию: 0)raw(логическое значение, необязательно): Получить необработанный контент без преобразования в markdown (по умолчанию: false)
Промпты
fetch
Извлечь URL и преобразовать его содержимое в markdown
Аргументы:
url(строка, обязательно): URL для извлечения
Установка
Опционально: установите node.js, это заставит сервер fetch использовать другой, более надежный упроститель HTML.
Использование uv (рекомендуется)
При использовании uv специальная установка не требуется. Мы будем использовать uvx для прямого запуска mcp-server-fetch.
Использование PIP
Альтернативно вы можете установить mcp-server-fetch через pip:
pip install mcp-server-fetchПосле установки вы можете запустить его как скрипт с помощью:
python -m mcp_server_fetchRelated MCP server: MCP Fetch
Конфигурация
Настройка для Claude.app
Добавьте в настройки Claude:
{
"mcpServers": {
"fetch": {
"command": "uvx",
"args": ["mcp-server-fetch"]
}
}
}{
"mcpServers": {
"fetch": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/fetch"]
}
}
}{
"mcpServers": {
"fetch": {
"command": "python",
"args": ["-m", "mcp_server_fetch"]
}
}
}Настройка для VS Code
Для быстрой установки используйте одну из кнопок установки в один клик ниже...
Для ручной установки добавьте следующий JSON-блок в файл настроек пользователя (JSON) в VS Code. Вы можете сделать это, нажав Ctrl + Shift + P и введя Preferences: Open User Settings (JSON).
Опционально вы можете добавить его в файл .vscode/mcp.json в вашей рабочей области. Это позволит вам делиться конфигурацией с другими.
Обратите внимание, что ключ
mcpнеобходим при использовании файлаmcp.json.
{
"mcp": {
"servers": {
"fetch": {
"command": "uvx",
"args": ["mcp-server-fetch"]
}
}
}
}{
"mcp": {
"servers": {
"fetch": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/fetch"]
}
}
}
}Настройка — robots.txt
По умолчанию сервер будет соблюдать файл robots.txt веб-сайта, если запрос поступил от модели (через инструмент), но не в том случае, если запрос был инициирован пользователем (через промпт). Это можно отключить, добавив аргумент --ignore-robots-txt в список args в конфигурации.
Настройка — User-agent
По умолчанию, в зависимости от того, поступил ли запрос от модели (через инструмент) или был инициирован пользователем (через промпт), сервер будет использовать либо user-agent
ModelContextProtocol/1.0 (Autonomous; +https://github.com/modelcontextprotocol/servers)либо
ModelContextProtocol/1.0 (User-Specified; +https://github.com/modelcontextprotocol/servers)Это можно настроить, добавив аргумент --user-agent=YourUserAgent в список args в конфигурации.
Настройка — Прокси
Сервер можно настроить на использование прокси с помощью аргумента --proxy-url.
Конфигурация Windows
Если вы столкнулись с проблемами тайм-аута в Windows, вам может потребоваться установить переменную окружения PYTHONIOENCODING, чтобы обеспечить правильную кодировку символов:
{
"mcpServers": {
"fetch": {
"command": "uvx",
"args": ["mcp-server-fetch"],
"env": {
"PYTHONIOENCODING": "utf-8"
}
}
}
}{
"mcpServers": {
"fetch": {
"command": "python",
"args": ["-m", "mcp_server_fetch"],
"env": {
"PYTHONIOENCODING": "utf-8"
}
}
}
}Это решает проблемы с кодировкой символов, которые могут привести к тайм-ауту сервера в системах Windows.
Отладка
Вы можете использовать инспектор MCP для отладки сервера. Для установок через uvx:
npx @modelcontextprotocol/inspector uvx mcp-server-fetchИли, если вы установили пакет в определенную директорию или занимаетесь его разработкой:
cd path/to/servers/src/fetch
npx @modelcontextprotocol/inspector uv run mcp-server-fetchВклад в проект
Мы приветствуем вклад, который поможет расширить и улучшить mcp-server-fetch. Независимо от того, хотите ли вы добавить новые инструменты, улучшить существующую функциональность или документацию, ваш вклад ценен.
Примеры других MCP-серверов и шаблонов реализации см. здесь: https://github.com/modelcontextprotocol/servers
Пул-реквесты приветствуются! Не стесняйтесь предлагать новые идеи, исправления ошибок или улучшения, чтобы сделать mcp-server-fetch еще более мощным и полезным.
Лицензия
mcp-server-fetch распространяется по лицензии MIT. Это означает, что вы можете свободно использовать, изменять и распространять программное обеспечение в соответствии с условиями лицензии MIT. Для получения более подробной информации, пожалуйста, ознакомьтесь с файлом LICENSE в репозитории проекта.
Available Tools
1 toolfetchA
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.
| Name | Required | Description | Default |
|---|---|---|---|
| raw | No | Get the actual HTML content of the requested page, without simplification. | |
| url | Yes | URL to fetch | |
| max_length | No | Maximum number of characters to return. | |
| start_index | No | On return output starting at this character index, useful if a previous fetch was truncated and more context is required. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Discloses fetching and optional markdown extraction, but does not cover error handling, rate limits, authentication, or side effects. No annotations provided, so description carries full burden but is incomplete.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, front-loaded with purpose. The second sentence provides historical context but adds length without core value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Covers basic purpose and parameters, but lacks details on response format and error behavior. Given no output schema and low complexity, it is minimally adequate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema has 100% description coverage, and the description adds slight context about markdown extraction related to the 'raw' parameter. However, it does not provide additional meaning beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states the tool fetches a URL from the internet and optionally extracts markdown. No siblings to distinguish, so the purpose is unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Implies use for up-to-date information but lacks explicit when-to-use or when-not-to-use guidance. No alternatives given, but siblings are absent.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
1 tool update
v1.0.0- First observed
fetch
TDQS
With only one tool, there is no ambiguity for an agent to distinguish between tools.
The single tool is named 'fetch', a clear verb describing its action, and consistency is trivially maintained.
One tool is appropriate for a focused server dedicated to fetching URLs, covering its core purpose without unnecessary expansion.
The tool fetches a URL and optionally extracts markdown, but lacks support for other output formats or request customization, leaving some gaps for varied use cases.
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 Connectors
Web scraping for AI agents. Converts URLs to clean, LLM-ready Markdown with anti-bot bypass.
Read any web page as clean Markdown for AI agents: fetch, search, metadata, links. SSRF-safe.
Document-to-Markdown MCP server — convert PDF, Office and HTML into LLM-ready Markdown.
Converts any URL to clean, LLM-ready Markdown using real Chrome browsers
Related MCP Servers
AlicenseBqualityDmaintenanceThis server converts webpages into clean, structured Markdown optimized for language model consumption, removing unnecessary content and supporting JavaScript rendering.112MIT- AlicenseBqualityDmaintenanceA Model Context Protocol server that allows LLMs to retrieve and convert web content to markdown without robots.txt restrictions.12MIT
- AlicenseAqualityCmaintenanceAn MCP server that fetches web pages and extracts clean, AI-friendly Markdown content using Mozilla Readability. It provides secure web access for LLMs with built-in SSRF protection and automated content cleaning for improved context retrieval and summarization.1311MIT
- AlicenseNot gradedqualityBmaintenanceConverts web pages to Markdown for MCP clients like Claude, with support for single and batch reads, caching, fallback rendering, and SSRF protection.22MIT
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/modelcontextprotocol/fetch'
If you have feedback or need assistance with the MCP directory API, please join our Discord server