fetch-text
Extract and convert web content from any URL into plain text format using MCP URL Fetcher, enabling easy integration with text-based workflows and analysis.
Instructions
Fetch content from any URL and convert to plain text format
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes | URL to fetch content from |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"url": {
"description": "URL to fetch content from",
"format": "uri",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}