Pinecone Developer MCP Server

Databasestdio
Repositorio

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.

Conectar

Añade esta configuración a .claude/mcp.json

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

Herramientas (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"
    }
  }
}

Recursos

Este servidor no expone ningún recurso.

Prompts

Este servidor no expone ningún prompt.

Información del servidor

Autor
Pinecone (@pinecone-io)
Repositorio
https://github.com/pinecone-io/pinecone-mcp
Licencia
MIT
Estrellas
0
Última actualización
12 de junio de 2026