- Provider
- pinecone
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 48 available
Quick start
Call Pinecone from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Pinecone's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.
// In your generated app's worker handler:
const composio = composioClient(env);
const result = await composio.execute(
"PINECONE_ACTION_NAME",
{ /* action parameters — see Actions section below */ }
);
return new Response(JSON.stringify(result), {
headers: { "Content-Type": "application/json" }
});
Replace ACTION_NAME with one of the slugs listed in
the Actions section below. The composio client handles auth +
rate limits automatically — no API key is exposed to user code.
Setup
End-users supply their own Pinecone API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.
Available actions
48 actions exposed via the
Pinecone integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
PINECONE_CANCEL_BULK_IMPORT -
PINECONE_CHAT_ASSISTANT -
PINECONE_CHAT_COMPLETION_ASSISTANT -
PINECONE_CONFIGURE_INDEX -
PINECONE_CREATE_ASSISTANT -
PINECONE_CREATE_BACKUP -
PINECONE_CREATE_INDEX -
PINECONE_CREATE_INDEX_FOR_MODEL -
PINECONE_CREATE_INDEX_FROM_BACKUP -
PINECONE_CREATE_NAMESPACE -
PINECONE_DELETE_ASSISTANT -
PINECONE_DELETE_BACKUP
Show all 48 actions
-
PINECONE_DELETE_FILE -
PINECONE_DELETE_INDEX -
PINECONE_DELETE_NAMESPACE -
PINECONE_DELETE_VECTORS -
PINECONE_DESCRIBE_BACKUP -
PINECONE_DESCRIBE_BULK_IMPORT -
PINECONE_DESCRIBE_FILE -
PINECONE_DESCRIBE_INDEX -
PINECONE_DESCRIBE_INDEX_STATS -
PINECONE_DESCRIBE_NAMESPACE -
PINECONE_DESCRIBE_RESTORE_JOB -
PINECONE_EMBED -
PINECONE_FETCH_VECTORS -
PINECONE_GET_ASSISTANT -
PINECONE_GET_MODEL -
PINECONE_LIST_ASSISTANTS -
PINECONE_LIST_BULK_IMPORTS -
PINECONE_LIST_COLLECTIONS -
PINECONE_LIST_FILES -
PINECONE_LIST_INDEX_BACKUPS -
PINECONE_LIST_INDEXES -
PINECONE_LIST_MODELS -
PINECONE_LIST_NAMESPACES_OPERATION -
PINECONE_LIST_PROJECT_BACKUPS -
PINECONE_LIST_RESTORE_JOBS -
PINECONE_LIST_VECTORS -
PINECONE_QUERY_VECTORS -
PINECONE_RERANK -
PINECONE_RETRIEVE_CONTEXT_ASSISTANT -
PINECONE_SEARCH_RECORDS_NAMESPACE -
PINECONE_START_BULK_IMPORT -
PINECONE_UPDATE_ASSISTANT -
PINECONE_UPDATE_VECTOR -
PINECONE_UPLOAD_FILE -
PINECONE_UPSERT_RECORDS_NAMESPACE -
PINECONE_UPSERT_VECTORS
Build with Pinecone
Open OverSkill, describe what you want to build, and reference Pinecone in your prompt — the AI will wire up the integration automatically.