kobold_web_search
Perform web searches using DuckDuckGo to retrieve real-time information, enabling seamless integration with KoboldAI for enhanced text generation and MCP-compatible applications.
Instructions
Search the web via DuckDuckGo
Input Schema
Name | Required | Description | Default |
---|---|---|---|
apiUrl | No | http://localhost:5001 | |
query | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"apiUrl": {
"default": "http://localhost:5001",
"type": "string"
},
"query": {
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}