Pinecone Developer (Vector Database) logo

Pinecone Developer (Vector Database)

Organization
pinecone-io

Connect your Pinecone projects to Cursor, Claude, and other AI assistants

Publisherpinecone-io
Repositorypinecone-mcp
LanguageTypeScript
Forks
20
Stars
65
Available tools
0
Transport typestdio
Categories
LicenseApache-2.0
Links
  • Connect tools to AI workflows

    Pinecone Developer (Vector Database) exposes MCP capabilities that can be used by compatible AI clients and agents.

  • 0 available tools

    Browse the callable actions below, including names and descriptions when provided by the server.

  • Ready-to-copy setup

    Use the installation snippets to configure this server in your preferred MCP client.

  • Open source signals

    65 stars and 20 forks from the linked repository.

Pinecone Developer MCP Server

npm version License CI

The Model Context Protocol (MCP) is a standard that allows coding assistants and other AI tools to interact with platforms like Pinecone. The Pinecone Developer MCP Server allows you to connect these tools with Pinecone projects and documentation.

Once connected, AI tools can:

  • Search Pinecone documentation to answer questions accurately.
  • Help you configure indexes based on your application's needs.
  • Generate code informed by your index configuration and data, as well as Pinecone documentation and examples.
  • Upsert and search for data in indexes, allowing you to test queries and evaluate results within your dev environment.

See the docs for more detailed information.

This MCP server is focused on improving the experience of developers working with Pinecone as part of their technology stack. It is intended for use with coding assistants. Pinecone also offers the Assistant MCP, which is designed to provide AI assistants with relevant context sourced from your knowledge base.

Setup

To configure the MCP server to access your Pinecone project, you will need to generate an API key using the console. Without an API key, your AI tool will still be able to search documentation. However, it will not be able to manage or query your indexes.

The MCP server requires Node.js v18 or later. Ensure that node and npx are available in your PATH.

Next, you will need to configure your AI assistant to use the MCP server.

Configure Cursor

To add the Pinecone MCP server to a project, create a .cursor/mcp.json file in the project root (if it doesn't already exist) and add the following configuration:

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

You can check the status of the server in Cursor Settings > MCP.

To enable the server globally, add the configuration to the .cursor/mcp.json in your home directory instead.

It is recommended to use rules to instruct Cursor on proper usage of the MCP server. Check out the docs for some suggestions.

Configure Claude desktop

Use Claude desktop to locate the claude_desktop_config.json file by navigating to Settings > Developer > Edit Config. Add the following configuration:

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

Restart Claude desktop. On the new chat screen, you should see a hammer (MCP) icon appear with the new MCP tools available.

Use as a Gemini CLI extension

To install this as a Gemini CLI extension, run the following command:

bash
gemini extensions install https://github.com/pinecone-io/pinecone-mcp

You will need to provide your Pinecone API key in the PINECONE_API_KEY environment variable.

bash
export PINECONE_API_KEY=<your pinecone api key>

When you run gemini and press ctrl+t, pinecone should now be shown in the list of installed MCP servers.

Usage

Once configured, your AI tool will automatically make use of the MCP to interact with Pinecone. You may be prompted for permission before a tool can be used.

Example prompts

Here are some prompts you can try with your AI assistant:

  • "Search the Pinecone docs for information about metadata filtering"
  • "List all my Pinecone indexes and describe their configurations"
  • "Create a new index called 'my-docs' using the multilingual-e5-large model"
  • "Upsert these documents into my index: [paste your documents]"
  • "Search my index for records related to 'authentication best practices'"
  • "What namespaces exist in my index, and how many records are in each?"

Tools

Pinecone Developer MCP Server provides the following tools for AI assistants to use:

  • search-docs: Search the official Pinecone documentation.
  • list-indexes: Lists all Pinecone indexes.
  • describe-index: Describes the configuration of an index.
  • describe-index-stats: Provides statistics about the data in the index, including the number of records and available namespaces.
  • create-index-for-model: Creates a new index that uses an integrated inference model to embed text as vectors.
  • upsert-records: Inserts or updates records in an index with integrated inference.
  • search-records: Searches for records in an index based on a text query, using integrated inference for embedding. Has options for metadata filtering and reranking.
  • cascading-search: Searches for records across multiple indexes, deduplicating and reranking the results.
  • rerank-documents: Reranks a collection of records or text documents using a specialized reranking model.

Limitations

Only indexes with integrated inference are supported. Assistants, indexes without integrated inference, standalone embeddings, and vector search are not supported.

Troubleshooting

MCP server not appearing in your AI tool

  • Ensure Node.js v18 or later is installed: node --version
  • Verify npx is available in your PATH: which npx
  • Check that your configuration file is in the correct location and has valid JSON syntax
  • Restart your AI tool after making configuration changes

"Invalid API key" or authentication errors

  • Verify your API key is correct in the Pinecone console
  • Check that the PINECONE_API_KEY environment variable is set correctly in your MCP configuration
  • Ensure there are no extra spaces or quotes around the API key value

Tools not working as expected

  • The MCP server only supports indexes with integrated inference. If you're trying to use a serverless index without integrated inference, you'll need to create a new index with an embedding model
  • Check the MCP server logs for error messages. In Cursor, view logs in Cursor Settings > MCP

Connection issues

  • If using a corporate network, ensure your firewall allows connections to api.pinecone.io
  • Try running the server manually to see detailed error output: PINECONE_API_KEY=<your-key> npx @pinecone-database/mcp

Contributing

We welcome your collaboration in improving the developer MCP experience. Please submit issues in the GitHub issue tracker. Information about contributing can be found in CONTRIBUTING.md.

Installation

TypingMind
Prerequisites:

Node.js 18+

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

Use Pinecone Developer (Vector Database) MCP with multiple AI models

TypingMind connects MCP tools at the workspace level, so once Pinecone Developer (Vector Database) is connected, you can use it with different AI models in TypingMind instead of setting it up separately for each model. This MCP runs locally through the TypingMind MCP connector on your device.

Setup guide to use the local connector

Use this when the MCP server needs access to local files, apps, or private resources on your computer.

1

Open the MCP settings

In TypingMind, go to Settings, Advanced Settings, then Model Context Protocol and choose Setup Connector.

  1. Open TypingMind in your browser.
  2. Click the Settings icon.
  3. Go to Advanced Settings.
  4. Open the Model Context Protocol section.
  5. Click Setup Connector and choose This Device.
TypingMind MCP connector setup screen with This Device selected
2

Run the connector command

Choose This Device, copy the command from TypingMind, and run it in Terminal. Keep the process running while you use MCP.

  1. Copy the setup command shown by TypingMind.
  2. Open Terminal on macOS or Windows Terminal on Windows.
  3. Paste and run the command.
  4. Approve the package install if Terminal asks you to proceed.
  5. Keep the Terminal window running while using MCP tools.
3

Add Pinecone Developer (Vector Database) as a server

When the connector status is Ready, click Edit Servers and paste the MCP server configuration.

  1. Wait until the connector status shows Ready.
  2. Click Edit Servers.
  3. Paste the Pinecone Developer (Vector Database) MCP server configuration.
  4. Save the server list.
  5. Refresh if you want to confirm the connector is still ready.
TypingMind MCP settings showing active server and Edit Servers button
{
  "mcpServers": {
    "pinecone-developer-vector-database": {
      "command": "npx",
      "args": [
        "-y",
        "@pinecone-database/mcp"
      ]
    }
  }
}
4

Use it across models

Save the server list, open Plugins, enable the Pinecone Developer (Vector Database) MCP tools, then select any supported AI model in TypingMind and use the tools in chat or assign them to an AI agent.

  1. Open the Plugins page in TypingMind.
  2. Enable the Pinecone Developer (Vector Database) MCP tools.
  3. Start a chat and choose the AI model you want to use.
  4. Use the MCP tools in chat or assign them to an AI agent.
  5. Switch to another AI model whenever needed without reconnecting MCP.
TypingMind chat using enabled MCP tools with a selected AI model
Can you use Pinecone Developer (Vector Database) to help me with this task?
Pinecone Developer (Vector Database)
Sure. I read it.
Here is what I found using Pinecone Developer (Vector Database).

Frequently asked questions

What is the Pinecone Developer (Vector Database) MCP server used for?

Pinecone Developer (Vector Database) is an MCP server that lets compatible AI clients connect to external tools and context. In TypingMind, you can add this MCP server once and make its tools available in your AI workspace.

Can I use Pinecone Developer (Vector Database) MCP with multiple AI models in TypingMind?

Yes. TypingMind connects MCP tools at the workspace level, so you can use Pinecone Developer (Vector Database) with different AI models such as Claude, ChatGPT, Gemini, or other models you have configured in TypingMind without setting up the MCP server separately for each model.

Why use Pinecone Developer (Vector Database) MCP with TypingMind?

TypingMind is one of the best frontends for LLM chat because it brings multiple AI models, prompts, plugins, AI agents, API keys, and MCP tools into one workspace. With Pinecone Developer (Vector Database) connected, you can use its MCP tools across your preferred models while keeping your chat workflow organized in TypingMind.

How do I connect Pinecone Developer (Vector Database) MCP to TypingMind?

Pinecone Developer (Vector Database) runs through the TypingMind local MCP connector. This is best when the MCP server needs access to local files, desktop apps, command-line tools, or private resources on your computer.

What tools does Pinecone Developer (Vector Database) MCP provide in TypingMind?

Pinecone Developer (Vector Database) exposes MCP capabilities that can be enabled from the TypingMind Plugins page and used in chat or assigned to AI agents.

Do I need to share my API keys with TypingMind to use Pinecone Developer (Vector Database) MCP?

No. TypingMind is local-first and lets you keep your model providers, API keys, prompts, and MCP configuration under your control. If Pinecone Developer (Vector Database) requires authentication, add the required headers, OAuth settings, or local configuration for that MCP server when you create the connection.

Related MCP Servers

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇