get_docs
Search official documentation for specific queries across multiple programming libraries or frameworks to retrieve relevant, concise text extracts.
Instructions
Search the latest docs for a given query and one or more libraries.
Args:
query: The query to search for (e.g., "Chroma DB")
libraries: A single library or a list of libraries to search in (e.g., "langchain" or ["fastapi", "django"])
Returns:
Text from the docs (limited to ~50KB for readability)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
libraries | Yes | ||
query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"libraries": {
"anyOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
],
"title": "Libraries"
},
"query": {
"title": "Query",
"type": "string"
}
},
"required": [
"query",
"libraries"
],
"title": "get_docsArguments",
"type": "object"
}