fetch-content
Retrieve content from a specified URL and convert it into text, HTML, markdown, or JSON format. Designed for Web3 research, this tool integrates with a fully local, decentralized MCP server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Output format | markdown |
url | Yes | URL to fetch content from (can be a resource:// URL) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"format": {
"default": "markdown",
"description": "Output format",
"enum": [
"text",
"html",
"markdown",
"json"
],
"type": "string"
},
"url": {
"description": "URL to fetch content from (can be a resource:// URL)",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}