Pinecone
Connector for the pinecone API, generated deterministically from its OpenAPI spec (endpoints, auth, and methods match the spec exactly — nothing is invented).
- Base URL:
https://controller.us-east1-gcp.pinecone.io - Auth:
header:Api-Key(pass your key via theapiKeyinput)
Operations
list_collections— GET /collections — List collectionsdescribe_collection— GET /collections/{collectionName} — Describe collectionlist_indexes— GET /indexes — List indexesdescribe_index— GET /indexes/{indexName} — Describe indexcreate_collection— POST /collections — Create collectiondelete_collection— DELETE /collections/{collectionName} — Delete Collection
Inputs
apiKey— your pinecone API keyoperation— one of the operations above- path parameters when an operation's path contains
{...} query— optional JSON object of query paramsbody— JSON object for create/update ops
Example
operation: list_collections
apiKey: <your key>