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_tokenBearer token- cli_setup_supported
true- cli_runtime_supported
true- mcp_gateway_supported
true- lua_supported
true- supports_multi_account
true
Quick Links
Lua APIAgent-facing namespace and function reference. Pinecone CLIHeadless setup and direct function calls. Pinecone MCPMCP gateway setup for external clients. Submit feedbackReport missing tools, auth problems, wrong docs, or runtime issues. ContributeAdd tools or improve metadata in the integrations repo.
Pinecone MCP Client Matrix
Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Pinecone.
Claude Code Pinecone MCP setup for Claude Code. Cursor Pinecone MCP setup for Cursor. Codex Pinecone MCP setup for Codex. OpenAI Agents Pinecone MCP setup for OpenAI Agents SDK. Claude Agent SDK Pinecone MCP setup for Claude Agent SDK. Vercel AI SDK Pinecone MCP setup for Vercel AI SDK. LangChain Pinecone MCP setup for LangChain. LangGraph Pinecone MCP setup for LangGraph. CrewAI Pinecone MCP setup for CrewAI. MCP clients Pinecone MCP setup for Generic MCP Clients.
Pinecone CLI Matrix
Use these pages for direct Pinecone CLI workflows in scripts, CI, cron, and agent wrappers.
CI Pinecone CLI for CI. Cron Jobs Pinecone CLI for cron jobs. Shell Scripts Pinecone CLI for shell scripts. Headless Automation Pinecone CLI for headless automation. Coding Agents Pinecone CLI for coding agents.
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
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. |