KosmoKrator

database

Pinecone MCP, CLI, and Lua Integration for AI Agents

Pinecone integration docs for AI agents: MCP gateway setup, Pinecone CLI commands, Lua API reference, credentials, and function schemas.

7 functions 5 read 2 write Bearer token auth

Pinecone for agents

Credentials can be configured manually in web or CLI hosts.

Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.

Machine-Readable Metadata
integration_slug
pinecone
route_slug
pinecone
package
pinecone
auth_strategy
bearer_token Bearer token
cli_setup_supported
true
cli_runtime_supported
true
mcp_gateway_supported
true
lua_supported
true
supports_multi_account
true

Quick Links

Pinecone MCP Client Matrix

Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Pinecone.

Pinecone CLI Matrix

Use these pages for direct Pinecone CLI workflows in scripts, CI, cron, and agent wrappers.

Function Catalog

FunctionTypeParametersDescription
pinecone.pinecone_list_indexes Read read 0 List all vector indexes in your Pinecone project. Returns index names, dimensions, metrics, and status.
pinecone.pinecone_get_index Read read 1 Get detailed information about a specific Pinecone vector index, including its dimension, metric, host URL, and status.
pinecone.pinecone_create_index Write write 3 Create a new serverless vector index in Pinecone. Specify the index name, vector dimension, and similarity metric (cosine, euclidean, or dotproduct).
pinecone.pinecone_upsert_vectors Write write 2 Upsert vectors into a Pinecone index using an index host URL.
pinecone.pinecone_query_vectors Read read 5 Search for similar vectors in a Pinecone index using a query embedding.
pinecone.pinecone_list_collections Read read 0 List all collections in your Pinecone project. Collections are static snapshots of indexes used for backups or creating new indexes.
pinecone.pinecone_get_current_user Read read 0 Get information about the currently authenticated Pinecone user, including email, name, and project details.