Query a user's index with Pinecone MCP. Accept an index name, input query, and optionally a top-k value
query [q] index [indexName] namespace [ns] reranker [rerankModel]# Query Command Utilize Pinecone MCP's `search-records` tool to search for records within a specified Pinecone index using a text query. ## Workflow When necessary, try to use the AskUserQuestion tool to make entering multiple choice responses easier. 1. Parse the user's input for: - `query` (required): The text to search for. - `index` (required): The name of the Pinecone index to search. - `namespace` (optional): The namespace within the index. - `reranker` (optional): The reranking model to use for improved relevance. 2. If the user omits required arguments: - If only ...