Fetch-Save MCP Server
Obtener y guardar servidor MCP
Un servidor de Protocolo de Contexto de Modelo (MLM) que proporciona funciones de obtención de contenido web y almacenamiento local de archivos. Este servidor permite a los LLM recuperar contenido de páginas web, convertir HTML a Markdown para facilitar su uso y guardar el contenido recuperado en un archivo local.
La diferencia clave con el servidor MCP de búsqueda estándar es que este servidor proporciona una herramienta de búsqueda y guardado que recupera contenido Y lo almacena localmente en un archivo permanente, lo que permite el acceso o procesamiento posterior de los datos.
[!PRECAUCIÓN] Este servidor puede acceder a direcciones IP locales/internas y puede representar un riesgo de seguridad. Tenga cuidado al usar este servidor MCP para asegurarse de no exponer datos confidenciales.
Nota adicional: El archivo Léame y parte del código se escribieron/editaron con Claude Code, por lo que algunas partes podrían ser incorrectas. Envíe una solicitud de modificación si necesita realizar algún cambio.
Herramientas disponibles
fetch-save: obtiene una URL de Internet, extrae su contenido como markdown y lo GUARDA en un archivo local.url(cadena, obligatoria): URL para obtener y descargarfilepath(cadena, obligatoria): ruta de archivo local donde se guardará el contenido descargado
Related MCP server: MCP URL Fetcher
Indicaciones
buscar y guardar
Obtener una URL y guardar su contenido en un archivo local
Argumentos:
url(cadena, obligatoria): URL para obtener y descargarfilepath(cadena, obligatoria): ruta de archivo local donde se guardará el contenido
Instalación
Opcionalmente: instale node.js, esto hará que el servidor de búsqueda utilice un simplificador HTML diferente que es más robusto.
Uso de uv (recomendado)
Al usar uv , no se requiere ninguna instalación específica. Usaremos uvx para ejecutar directamente mcp-server-fetch-save .
Uso de PIP
Alternativamente, puede instalar mcp-server-fetch-save a través de pip:
pip install mcp-server-fetch-saveDespués de la instalación, puedes ejecutarlo como un script usando:
python -m mcp_server_fetch_saveConfiguración
Configurar para Claude.app
Añade a tu configuración de Claude:
"mcpServers": {
"fetch-save": {
"command": "uvx",
"args": ["mcp-server-fetch-save"]
}
}"mcpServers": {
"fetch-save": {
"command": "python",
"args": ["-m", "mcp_server_fetch_save"]
}
}Configurar para VS Code
Para la instalación manual, agregue el siguiente bloque JSON a su archivo de configuración de usuario (JSON) en VS Code. Para ello, presione Ctrl + Shift + P y escriba Preferences: Open User Settings (JSON) .
Opcionalmente, puede agregarlo a un archivo llamado .vscode/mcp.json en su espacio de trabajo. Esto le permitirá compartir la configuración con otros.
Tenga en cuenta que la clave
mcpes necesaria cuando se utiliza el archivomcp.json.
{
"mcp": {
"servers": {
"fetch-save": {
"command": "uvx",
"args": ["mcp-server-fetch-save"]
}
}
}
}Personalización - robots.txt
De forma predeterminada, el servidor obedecerá el archivo robots.txt de un sitio web si la solicitud proviene del modelo (mediante una herramienta), pero no si la solicitud fue iniciada por el usuario (mediante un mensaje). Esto se puede desactivar añadiendo el argumento --ignore-robots-txt a la lista de args de la configuración.
Personalización - Agente de usuario
De manera predeterminada, dependiendo de si la solicitud provino del modelo (a través de una herramienta) o fue iniciada por el usuario (a través de un mensaje), el servidor utilizará el agente de usuario.
ModelContextProtocol/1.0 (Autonomous; +https://github.com/modelcontextprotocol/servers)o
ModelContextProtocol/1.0 (User-Specified; +https://github.com/modelcontextprotocol/servers)Esto se puede personalizar agregando el argumento --user-agent=YourUserAgent a la lista de args en la configuración.
Personalización - Proxy
El servidor se puede configurar para utilizar un proxy mediante el argumento --proxy-url .
Depuración
Puede descargar este repositorio y agregarlo a su archivo .mcp.json para ejecutarlo/probarlo localmente.
{
"mcpServers": {
"fetch_save": {
"command": "uv",
"args": [
"--directory",
"/path/to/clone/of/project/mcp-server-fetch-save/src/mcp_server_fetch_save",
"run",
"__main__.py"
]
}
}
}
Puede usar el inspector MCP para depurar el servidor. Para instalaciones uvx:
npx @modelcontextprotocol/inspector uvx mcp-server-fetch-saveO si ha instalado el paquete en un directorio específico o está desarrollando en él:
cd path/to/mcp-server-fetch-save
npx @modelcontextprotocol/inspector uv run mcp-server-fetch-saveContribuyendo
Invitamos a todos a contribuir para ampliar y mejorar mcp-server-fetch-save. Ya sea que desee añadir nuevas herramientas, mejorar la funcionalidad existente o mejorar la documentación, su opinión es valiosa.
Para ver ejemplos de otros servidores MCP y patrones de implementación, consulte: https://github.com/modelcontextprotocol/servers
¡Aceptamos solicitudes de incorporación de cambios! No dudes en contribuir con nuevas ideas, correcciones de errores o mejoras para que mcp-server-fetch-save sea aún más potente y útil.
Licencia
mcp-server-fetch-save está licenciado bajo la Licencia MIT. Esto significa que usted tiene libertad de usar, modificar y distribuir el software, sujeto a los términos y condiciones de la Licencia MIT. Para más detalles, consulte el archivo de LICENCIA en el repositorio del proyecto.
Gracias
Este servidor se desarrolló con base en el modelo original contextprotocol/servers fetch server, con funcionalidad adicional para guardar contenido en archivos locales.
Available Tools
1 toolfetch-saveA
Fetches a URL from the internet and SAVES the contents to a LOCAL FILE. This tool is specifically designed for DOWNLOADING and STORING web content to your filesystem.
When you need to both access online content AND save it locally for later use or processing, THIS is the appropriate tool to use. Unlike the regular fetch tool which only displays content, this tool permanently stores the fetched data in a file.
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 |
|---|---|---|---|
| filepath | Yes | Local filepath where the downloaded content will be saved | |
| url | Yes | URL to fetch and download for local storage |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It effectively describes key behavioral traits: that the tool performs a download operation, permanently stores data to the filesystem, grants internet access capability, and fetches up-to-date information. However, it doesn't mention potential limitations like file size constraints, network timeouts, or error handling scenarios.
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?
The description is appropriately front-loaded with the core functionality, but contains some redundant phrasing and historical context about internet access that could be more concise. The third paragraph about previously lacking internet access adds context but could be integrated more efficiently into the usage guidelines.
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?
For a tool with 2 parameters, 100% schema coverage, and no annotations or output schema, the description provides good contextual completeness. It explains the tool's purpose, usage context, behavioral characteristics, and internet access capability. The main gap is the lack of information about return values or error conditions, which would be helpful given there's no output schema.
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?
The input schema has 100% description coverage, providing clear documentation for both parameters. The description adds some context by mentioning 'downloading and storing web content' and 'local file for storage and future use,' but doesn't provide additional semantic details beyond what's already in the schema descriptions. This meets the baseline expectation when schema coverage is complete.
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?
The description clearly states the tool's purpose with specific verbs ('fetches', 'saves', 'downloading', 'storing') and resources ('URL', 'web content', 'local file', 'filesystem'). It explicitly distinguishes this from a hypothetical 'regular fetch tool' that only displays content, establishing clear differentiation even without actual sibling tools.
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?
The description provides explicit guidance on when to use this tool: 'When you need to both access online content AND save it locally for later use or processing, THIS is the appropriate tool to use.' It also clearly contrasts with an alternative ('regular fetch tool which only displays content') and specifies the tool's internet access capability that overrides previous limitations.
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.
1 tool update
v1.0.0- First observed
fetch-save
TDQS
Scored across 1 tool
With only one tool, there is no possibility of ambiguity or overlap with other tools. The tool's purpose is clearly defined as fetching and saving web content, making it distinct by default.
The single tool name 'fetch-save' follows a consistent verb-verb pattern that clearly describes its dual functionality. There are no other tools to compare against, so consistency is inherently perfect.
A single tool is too few for a server named 'Fetch-Save MCP Server', which implies a broader scope of operations. While the tool itself is useful, the server lacks complementary tools like list, delete, or manage saved files, making it feel incomplete and thin for its apparent purpose.
The server is severely incomplete for a fetch-and-save domain. It only provides a download-and-store operation, with no tools for managing saved files (e.g., list, read, delete, update) or handling errors, which will limit agent workflows and cause dead ends in tasks.
Maintenance
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
A Model Context Protocol server for Wix AI tools
Agent-native MCP server over the public saagarpatel.dev corpus. Read-only, stateless.
Enable secure connectivity between Sentry issues and debugging data, and LLM clients, using a Model Context Protocol (MCP) server.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceA Model Context Protocol server that allows LLMs to interact with web content through standardized tools, currently supporting web scraping functionality.1MIT
- FlicenseBqualityDmaintenanceA Model Context Protocol server that enables LLMs to fetch and process web content in multiple formats (HTML, JSON, Markdown, text) with automatic format detection.56-
- AlicenseBqualityDmaintenanceA Model Context Protocol server that intelligently fetches and processes web content, transforming websites and documentation into clean, structured markdown with nested URL crawling capabilities.26 npm9MIT
- AlicenseBqualityDmaintenanceA Model Context Protocol server that enables AI assistants to securely fetch and extract readable text content from web pages through a standardized interface.1MIT