perplexity-web-api-mcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
perplexity-web-api-mcp by mishamyrt | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 72 | ★ 85,748 |
| 30d uses | — | — |
| Score | 46 | 77 |
| Official | — | ✓ |
| Categories | SearchAI / LLM ToolsDeveloper Tools | File SystemDeveloper ToolsProductivity |
| Language | Rust | TypeScript |
| Last commit | 1 mo ago | this month |
perplexity-web-api-mcp · Summary
An MCP server that provides access to Perplexity AI search and reasoning without requiring API keys by using session tokens.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
perplexity-web-api-mcp · Use cases
- Integrating web search capabilities into AI applications without API costs
- Enabling research assistants to access up-to-date information from the web
- Adding Perplexity's reasoning capabilities to custom AI workflows
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
perplexity-web-api-mcp · Install
Installation
**NPM Installation (Recommended)**
npm install -g perplexity-web-api-mcp**Docker**
docker run -d -p 8080:8080 -e PERPLEXITY_SESSION_TOKEN="your-token" mishamyrt/perplexity-web-api-mcp**Claude Desktop Configuration** Add to claude_desktop_config.json:
{
"mcpServers": {
"perplexity": {
"command": "npx",
"args": ["-y", "perplexity-web-api-mcp"],
"env": {
"PERPLEXITY_SESSION_TOKEN": "your-session-token",
"PERPLEXITY_CSRF_TOKEN": "your-csrf-token"
}
}
}
}**Tokenless Mode**: Omit the environment variables above to use basic functionality without authentication.
filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using 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 Extension
Click the installation buttons in the README to install directly in VS Code.