url-metadata
Extract metadata from any URL, such as title and description, using DuckDuckGo Search MCP. Ideal for accessing real-time web information in a privacy-friendly manner without API keys.
Instructions
Extract metadata from a URL (title, description, etc.)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes | The URL to extract metadata from |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"description": "The URL to extract metadata from",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}