Pinecone Developer MCP Server

Databasestdio
代码仓库

Pinecone's official MCP server connects AI assistants to Pinecone vector databases for retrieval-augmented generation (RAG) workflows. Lets agents create and configure indexes, upsert and embed documents, and run semantic searches over vector data — all from natural language, without leaving the editor or chat.

连接

将此配置添加到 .claude/mcp.json

{
  "mcpServers": {
    "pinecone": {
      "command": "npx",
      "args": [
        "-y",
        "@pinecone-database/mcp"
      ],
      "env": {
        "PINECONE_API_KEY": "<YOUR_PINECONE_API_KEY>"
      }
    }
  }
}

工具 (2)

search-records

Run a semantic search over a Pinecone index and return the most relevant records.

{
  "type": "object",
  "required": [
    "index_name",
    "query"
  ],
  "properties": {
    "query": {
      "type": "string",
      "description": "Natural-language query to search for"
    },
    "top_k": {
      "type": "integer",
      "description": "Number of results to return"
    },
    "index_name": {
      "type": "string",
      "description": "Name of the Pinecone index to query"
    }
  }
}

upsert-records

Insert or update records (with text to embed) into a Pinecone index.

{
  "type": "object",
  "required": [
    "index_name",
    "records"
  ],
  "properties": {
    "records": {
      "type": "array",
      "items": {
        "type": "object"
      },
      "description": "Records to upsert, each with an id and text/metadata"
    },
    "index_name": {
      "type": "string",
      "description": "Name of the target Pinecone index"
    }
  }
}

资源

此服务器未提供任何资源。

提示词

此服务器未提供任何提示词。

服务器信息

作者
Pinecone (@pinecone-io)
代码仓库
https://github.com/pinecone-io/pinecone-mcp
许可证
MIT
星标
0
最后更新
2026年6月12日