get_docs
Search real-time documentation for libraries like Langchain, Llama-Index, MCP, and OpenAI using a query and library name. Retrieve updated information directly from the docs to support LLMs.
Instructions
Search the docs for a given query and library.
Supports langchain, llama-index, mcp, and openai.
Args:
query: The query to search for (e.g. "Chroma DB")
library: The library to search in (e.g. "langchain")
Returns:
Text from the docs
Input Schema
Name | Required | Description | Default |
---|---|---|---|
library | Yes | ||
query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"library": {
"title": "Library",
"type": "string"
},
"query": {
"title": "Query",
"type": "string"
}
},
"required": [
"query",
"library"
],
"title": "get_docsArguments",
"type": "object"
}