Skip to main content
Glama
clarkemn

cortex-cloud-docs-mcp-server

search_all_docs

Search across all Cortex Cloud documentation sites to find specific information using a query.

Instructions

Search across all Cortex Cloud documentation sites.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryYes

Implementation Reference

  • The handler function that implements the core logic of the 'search_all_docs' tool. It searches all indexed documentation using the indexer and returns the results as a JSON string.
    @mcp.tool() async def search_all_docs(query: str) -> str: """Search across all Cortex Cloud documentation sites.""" results = await indexer.search_docs(query) return json.dumps(results, indent=2)
  • Identical handler function implementing the 'search_all_docs' tool logic, present in the alternative entrypoint file.
    @mcp.tool() async def search_all_docs(query: str) -> str: """Search across all Cortex Cloud documentation sites.""" results = await indexer.search_docs(query) return json.dumps(results, indent=2)
  • Global indexer instance initialization, crucial for the tool's search functionality.
    indexer = DocumentationIndexer()
  • Global indexer instance used by the search_all_docs tool.
    indexer = DocumentationIndexer()

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/clarkemn/cortex-cloud-docs-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server