fetch
Convert webpage HTML content into markdown format by providing the URL. Designed for web scraping and content extraction within the DuckDuckGo Web Search MCP Server.
Instructions
scrape the html content and return the markdown format using jina api.
Args:
url: The search query string
Returns:
text : html in markdown format
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"title": "Url",
"type": "string"
}
},
"required": [
"url"
],
"title": "fetchArguments",
"type": "object"
}