doc_find
Search and retrieve documents using a query-based system within TOOL4LM's MCP server. Specify terms, top results, and limits to efficiently locate relevant information.
Instructions
Alias of doc.find
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
q | Yes | ||
top | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"type": "integer"
},
"q": {
"type": "string"
},
"top": {
"type": "integer"
}
},
"required": [
"q"
],
"type": "object"
}