everything vs mcp-pinecone
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | mcp-pinecone by sirmews | |
|---|---|---|
| Stars | ★ 85,748 | ★ 148 |
| 30天用量 | — | — |
| 综合分 | 77 | 42 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | AI / LLM 工具知识库 / RAG数据库 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 16 个月前 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
mcp-pinecone · 概述
MCP 服务器让 Claude Desktop 能够读取和写入 Pinecone 向量数据库,提供语义搜索和文档处理功能。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
mcp-pinecone · 使用场景
- 通过搜索向量数据库检索相关上下文实现检索增强生成 (RAG)
- 从大型文档集合中进行文档分析和知识提取
- 使用 Pinecone 作为向量存储构建具有持久记忆的 AI 应用
everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingmcp-pinecone · 安装
安装
通过 Smithery 安装
npx -y @smithery/cli install mcp-pinecone --client claude手动安装
使用 [uv](https://docs.astral.sh/uv/getting-started/installation/) 安装服务器:
uvx install mcp-pinecone或
uv pip install mcp-pineconeClaude Desktop 配置
在 Claude Desktop 配置文件中添加以下内容:
*MacOS*: ~/Library/Application\ Support/Claude/claude_desktop_config.json *Windows*: %APPDATA%/Claude/claude_desktop_config.json
"mcpServers": {
"mcp-pinecone": {
"command": "uv",
"args": [
"--directory",
"{project_dir}",
"run",
"mcp-pinecone"
]
}
}对于已发布的服务器:
"mcpServers": {
"mcp-pinecone": {
"command": "uvx",
"args": [
"--index-name",
"{your-index-name}",
"--api-key",
"{your-secret-api-key}",
"mcp-pinecone"
]
}
}