mcp_fetch
Retrieve website content by inputting a URL using this tool, designed for extending Cursor IDE functionality with custom server-based tools.
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"
}