mcp_fetch
Fetch and retrieve website content by providing a URL using a tool designed for Cursor IDE's MCP server, enabling rapid web data extraction and integration.
Instructions
Fetches a website and returns its content
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes | URL to fetch |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"description": "URL to fetch",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}