1.5.8npm · @pinkpixel/web-scout-mcp · current release
Observed 2026-08-14T15:53:01.262Z using mcpSecurity-inventory. Status: succeeded. Negotiated protocol: 2025-06-18.
{
"tools": {
"listChanged": true
}
}| Tool | Category | Annotations | Risk |
|---|---|---|---|
DuckDuckGoWebSearchInitiates a web search query using the DuckDuckGo search engine and returns a well-structured list of findings. Input the keywords, question, or topic you want to search for using DuckDuckGo as your query. Input the maximum number of search entries you'd like to receive using maxResults - defaults to 10 if not provided.Input schema{
"type": "object",
"properties": {
"query": {
"type": "string",
"minLength": 1,
"description": "Search query string"
},
"maxResults": {
"type": "integer",
"minimum": 1,
"maximum": 25,
"description": "Maximum number of results to return (default: 10)"
}
},
"required": [
"query"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | — · — | — |
UrlContentExtractorFetches and extracts content from a given webpage URL. Input the URL of the webpage you want to extract content from as a string using the url parameter. You can also input an array of URLs to fetch content from multiple pages at once.Input schema{
"type": "object",
"properties": {
"url": {
"anyOf": [
{
"type": "string",
"format": "uri",
"description": "The webpage URL to fetch content from"
},
{
"type": "array",
"items": {
"type": "string",
"format": "uri"
},
"minItems": 1,
"description": "List of webpage URLs to get content from"
}
],
"description": "URL or list of URLs to fetch"
}
},
"required": [
"url"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | — · — | — |