https://github.com/pinecone-io/assistant-mcp
Pinecone Assistant MCP server
https://github.com/pinecone-io/assistant-mcp
Last synced: 3 months ago
JSON representation
Pinecone Assistant MCP server
- Host: GitHub
- URL: https://github.com/pinecone-io/assistant-mcp
- Owner: pinecone-io
- License: mit
- Created: 2025-02-28T07:30:56.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-04-17T10:32:57.000Z (7 months ago)
- Last Synced: 2025-06-05T11:34:46.916Z (5 months ago)
- Language: Rust
- Size: 13.7 KB
- Stars: 18
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-mcp-zh - pinecone-io/assistant-mcp
- Awesome-Official-MCP-Servers - Pinecone Assistant - io/assistant-mcp?style=social) | Retrieves context from your [Pinecone Assistant](https://docs.pinecone.io/guides/assistant/mcp-server) knowledge base. | | (官方 MCP 服务器列表)
- metorial-index - Pinecone Assistant Server - Retrieve information efficiently from Pinecone Assistant with support for multiple configurable results, enabling seamless integration with applications to access vector database capabilities. (Cloud Services)
- Awesome-Official-MCP-Servers - Pinecone Assistant - io/assistant-mcp?style=social) | Retrieves context from your [Pinecone Assistant](https://docs.pinecone.io/guides/assistant/mcp-server) knowledge base. | | (官方 MCP 服务器列表)
- awesome-pinecone - Pinecone Assistant MCP
- awesome-pinecone - Pinecone Assistant MCP
- awesome-mcp-servers - **assistant-mcp** - Pinecone Assistant MCP server `rust` `mcp` `server` `http` `git` `cargo install --git https://github.com/pinecone-io/assistant-mcp` (🔧 Utilities)
README
# Pinecone Assistant MCP Server
An MCP server implementation for retrieving information from Pinecone Assistant.
## Features
- Retrieves information from Pinecone Assistant
- Supports multiple results retrieval with a configurable number of results
## Prerequisites
- Docker installed on your system
- Pinecone API key - obtain from the [Pinecone Console](https://app.pinecone.io)
- Pinecone Assistant API host - after creating an Assistant (e.g. in Pinecone Console), you can find the host in the Assistant details page
## Building with Docker
To build the Docker image:
```sh
docker build -t pinecone/assistant-mcp .
```
## Running with Docker
Run the server with your Pinecone API key:
```sh
docker run -i --rm \
-e PINECONE_API_KEY= \
-e PINECONE_ASSISTANT_HOST= \
pinecone/assistant-mcp
```
### Environment Variables
- `PINECONE_API_KEY` (required): Your Pinecone API key
- `PINECONE_ASSISTANT_HOST` (optional): Pinecone Assistant API host (default: https://prod-1-data.ke.pinecone.io)
- `LOG_LEVEL` (optional): Logging level (default: info)
## Usage with Claude Desktop
Add this to your `claude_desktop_config.json`:
```json
{
"mcpServers": {
"pinecone-assistant": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"PINECONE_API_KEY",
"-e",
"PINECONE_ASSISTANT_HOST",
"pinecone/assistant-mcp"
],
"env": {
"PINECONE_API_KEY": "",
"PINECONE_ASSISTANT_HOST": ""
}
}
}
}
```
## Building from Source
If you prefer to build from source without Docker:
1. Make sure you have Rust installed (https://rustup.rs/)
2. Clone this repository
3. Run `cargo build --release`
4. The binary will be available at `target/release/assistant-mcp`
### Testing with the inspector
```sh
export PINECONE_API_KEY=
export PINECONE_ASSISTANT_HOST=
# Run the inspector alone
npx @modelcontextprotocol/inspector cargo run
# Or run with Docker directly through the inspector
npx @modelcontextprotocol/inspector -- docker run -i --rm -e PINECONE_API_KEY -e PINECONE_ASSISTANT_HOST pinecone/assistant-mcp
```
## License
This project is licensed under the terms specified in the LICENSE file.