usekeen_package_doc_search
Search package and service documentation to find implementation details, examples, and specifications. Enter the package name and specific query for targeted results.
Instructions
Search documentation of packages and services to find implementation details, examples, and specifications. The user's query should be as specific as possible to get the best results.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
package_name | Yes | Name of the package or service to search documentation for (e.g. 'react', 'aws-s3', 'docker') | |
query | Yes | Search term to find specific information within the package/service documentation (e.g. 'file upload example', 'authentication methods') |
Input Schema (JSON Schema)
{
"properties": {
"package_name": {
"description": "Name of the package or service to search documentation for (e.g. 'react', 'aws-s3', 'docker')",
"type": "string"
},
"query": {
"description": "Search term to find specific information within the package/service documentation (e.g. 'file upload example', 'authentication methods')",
"type": "string"
}
},
"required": [
"package_name",
"query"
],
"type": "object"
}