perplexity-web-api-mcp vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
perplexity-web-api-mcp by mishamyrt | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 72 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 46 | 77 |
| 官方 | — | ✓ |
| 分类 | 搜索AI / LLM 工具开发者工具 | 本地文件系统开发者工具效率工具 |
| 实现语言 | Rust | TypeScript |
| 最近提交 | 1 个月前 | 本月 |
perplexity-web-api-mcp · 概述
一个无需 API 密钥的 MCP 服务器,通过会话令牌提供 Perplexity AI 搜索和推理功能。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
perplexity-web-api-mcp · 使用场景
- 将网络搜索功能集成到 AI 应用程序中,无需 API 成本
- 使研究助理能够访问来自网络的最新信息
- 将 Perplexity 的推理功能添加到自定义 AI 工作流中
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
perplexity-web-api-mcp · 安装
安装
**NPM 安装(推荐)**
npm install -g perplexity-web-api-mcp**Docker**
docker run -d -p 8080:8080 -e PERPLEXITY_SESSION_TOKEN="您的令牌" mishamyrt/perplexity-web-api-mcp**Claude Desktop 配置** 添加到 claude_desktop_config.json:
{
"mcpServers": {
"perplexity": {
"command": "npx",
"args": ["-y", "perplexity-web-api-mcp"],
"env": {
"PERPLEXITY_SESSION_TOKEN": "您的会话令牌",
"PERPLEXITY_CSRF_TOKEN": "您的 CSRF 令牌"
}
}
}
}**无令牌模式**:省略上述环境变量以使用基本功能而不进行身份验证。
filesystem · 安装
安装
使用 NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}使用 Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code 扩展
点击 README 中的安装按钮直接在 VS Code 中安装。