{"id":27492084,"url":"https://github.com/pinecone-io/assistant-mcp","last_synced_at":"2025-08-13T02:07:25.635Z","repository":{"id":284183554,"uuid":"940446625","full_name":"pinecone-io/assistant-mcp","owner":"pinecone-io","description":"Pinecone Assistant MCP server","archived":false,"fork":false,"pushed_at":"2025-04-17T10:32:57.000Z","size":14,"stargazers_count":18,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-06-05T11:34:46.916Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pinecone-io.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-02-28T07:30:56.000Z","updated_at":"2025-06-03T19:53:59.000Z","dependencies_parsed_at":"2025-03-24T16:36:14.193Z","dependency_job_id":null,"html_url":"https://github.com/pinecone-io/assistant-mcp","commit_stats":null,"previous_names":["pinecone-io/assistant-mcp"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/pinecone-io/assistant-mcp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pinecone-io%2Fassistant-mcp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pinecone-io%2Fassistant-mcp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pinecone-io%2Fassistant-mcp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pinecone-io%2Fassistant-mcp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pinecone-io","download_url":"https://codeload.github.com/pinecone-io/assistant-mcp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pinecone-io%2Fassistant-mcp/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270166108,"owners_count":24538445,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-13T02:00:09.904Z","response_time":66,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-04-16T23:01:11.513Z","updated_at":"2025-08-13T02:07:25.609Z","avatar_url":"https://github.com/pinecone-io.png","language":"Rust","funding_links":[],"categories":["AI Memory \u0026 RAG","Production-Ready Servers","MCP 服务器精选列表","پیاده‌سازی‌های سرور","APIs and HTTP Requests","官方 MCP 服务器列表","🔧 Utilities","Tools","Database \u0026 Messaging Mcp Servers","📂 By Category","Server Implementations"],"sub_categories":["RAG","🧠 知识、记忆与 RAG","🧠 \u003ca name=\"knowledge--memory\"\u003e\u003c/a\u003eدانش و حافظه","Development","💾 Databases","🧠 \u003ca name=\"knowledge--memory\"\u003e\u003c/a\u003eKnowledge \u0026 Memory"],"readme":"# Pinecone Assistant MCP Server\n\nAn MCP server implementation for retrieving information from Pinecone Assistant.\n\n## Features\n\n- Retrieves information from Pinecone Assistant\n- Supports multiple results retrieval with a configurable number of results\n\n## Prerequisites\n\n- Docker installed on your system\n- Pinecone API key - obtain from the [Pinecone Console](https://app.pinecone.io)\n- Pinecone Assistant API host - after creating an Assistant (e.g. in Pinecone Console), you can find the host in the Assistant details page\n\n## Building with Docker\n\nTo build the Docker image:\n\n```sh\ndocker build -t pinecone/assistant-mcp .\n```\n\n## Running with Docker\n\nRun the server with your Pinecone API key:\n\n```sh\ndocker run -i --rm \\\n  -e PINECONE_API_KEY=\u003cYOUR_PINECONE_API_KEY_HERE\u003e \\\n  -e PINECONE_ASSISTANT_HOST=\u003cYOUR_PINECONE_ASSISTANT_HOST_HERE\u003e \\\n  pinecone/assistant-mcp\n```\n\n### Environment Variables\n\n- `PINECONE_API_KEY` (required): Your Pinecone API key\n- `PINECONE_ASSISTANT_HOST` (optional): Pinecone Assistant API host (default: https://prod-1-data.ke.pinecone.io)\n- `LOG_LEVEL` (optional): Logging level (default: info)\n\n## Usage with Claude Desktop\n\nAdd this to your `claude_desktop_config.json`:\n\n```json\n{\n  \"mcpServers\": {\n    \"pinecone-assistant\": {\n      \"command\": \"docker\",\n      \"args\": [\n        \"run\", \n        \"-i\", \n        \"--rm\", \n        \"-e\", \n        \"PINECONE_API_KEY\", \n        \"-e\", \n        \"PINECONE_ASSISTANT_HOST\", \n        \"pinecone/assistant-mcp\"\n      ],\n      \"env\": {\n        \"PINECONE_API_KEY\": \"\u003cYOUR_PINECONE_API_KEY_HERE\u003e\",\n        \"PINECONE_ASSISTANT_HOST\": \"\u003cYOUR_PINECONE_ASSISTANT_HOST_HERE\u003e\"\n      }\n    }\n  }\n}\n```\n\n## Building from Source\n\nIf you prefer to build from source without Docker:\n\n1. Make sure you have Rust installed (https://rustup.rs/)\n2. Clone this repository\n3. Run `cargo build --release`\n4. The binary will be available at `target/release/assistant-mcp`\n\n### Testing with the inspector\n```sh\nexport PINECONE_API_KEY=\u003cYOUR_PINECONE_API_KEY_HERE\u003e\nexport PINECONE_ASSISTANT_HOST=\u003cYOUR_PINECONE_ASSISTANT_HOST_HERE\u003e\n# Run the inspector alone\nnpx @modelcontextprotocol/inspector cargo run\n# Or run with Docker directly through the inspector\nnpx @modelcontextprotocol/inspector -- docker run -i --rm -e PINECONE_API_KEY -e PINECONE_ASSISTANT_HOST pinecone/assistant-mcp\n```\n\n## License\n\nThis project is licensed under the terms specified in the LICENSE file.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpinecone-io%2Fassistant-mcp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpinecone-io%2Fassistant-mcp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpinecone-io%2Fassistant-mcp/lists"}