Use when working with the Perplexity-MCP project or similar codebases. Contains project-specific CLAUDE.md context from the awesome-claude-code community collection.
Scanned 9/8/2026
Install to Claude Code
npx -y skills add anubhavg-icpl/vibe --skill him-claudemd-Perplexity-MCP --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Him Claudemd Perplexity MCP?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/anubhavg-icpl-him-claudemd-perplexity-mcp)More formats (shields.io, HTML) on the badges page.
---
name: him-claudemd-Perplexity-MCP
description: Use when working with the Perplexity-MCP project or similar codebases. Contains project-specific CLAUDE.md context from the awesome-claude-code community collection.
license: CC-BY-NC-SA-4.0
metadata:
version: 1.0.0
tags: [claude-md, community, Perplexity-MCP]
---
# Perplexity MCP Server Guide
## Quick Start
1. **Install Dependencies**: `npm install`
2. **Set API Key**: Add to `.env` file or use environment variable:
```
PERPLEXITY_API_KEY=your_api_key_here
```
3. **Run Server**: `node server.js`
## Claude Desktop Configuration
Add to `claude_desktop_config.json`:
```json
{
"mcpServers": {
"perplexity": {
"command": "node",
"args": [
"/absolute/path/to/perplexity-mcp/server.js"
],
"env": {
"PERPLEXITY_API_KEY": "your_perplexity_api_key"
}
}
}
}
```
## NPM Global Installation
Run: `npm install -g .`
Then configure in Claude Desktop:
```json
{
"mcpServers": {
"perplexity": {
"command": "npx",
"args": [
"perplexity-mcp"
],
"env": {
"PERPLEXITY_API_KEY": "your_perplexity_api_key"
}
}
}
}
```
## NVM Users
If using NVM, you must use absolute paths to both node and the script:
```json
{
"mcpServers": {
"perplexity": {
"command": "/Users/username/.nvm/versions/node/v16.x.x/bin/node",
"args": [
"/Users/username/path/to/perplexity-mcp/server.js"
],
"env": {
"PERPLEXITY_API_KEY": "your_perplexity_api_key"
}
}
}
}
```
## Available Tools
- **perplexity_ask**: Send a single question to Perplexity
- Default model: `llama-3.1-sonar-small-128k-online`
- **perplexity_chat**: Multi-turn conversation with Perplexity
- Default model: `mixtral-8x7b-instruct`
## Troubleshooting
- Check logs with `cat ~/.claude/logs/perplexity.log`
- Ensure your API key is valid and has not expired
- Validate your claude_desktop_config.json format
- Add verbose logging with the `DEBUG=1` environment variable
## Architecture
- Built with the MCP protocol
- Communication via stdio transport
- Lightweight proxy to Perplexity APIIs this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!