perplexity-config.mdā¢2.08 kB
# Perplexity MCP Configuration - Ready to Use
Copy the appropriate configuration below and paste it into your Perplexity MCP settings.
## Option 1: Using uvx (Recommended)
Find your uvx path first:
```bash
which uvx
```
Then use this config (replace the uvx path with your actual path):
```json
{
"mcpServers": {
"obsidian": {
"command": "/Users/pierregallet/.local/bin/uvx",
"args": ["custom-obsidian-mcp"],
"env": {
"OBSIDIAN_API_KEY": "d64200754fffb4ef4b8f1761c139da765d3255e69079b771fb0695699f210f75",
"OBSIDIAN_HOST": "127.0.0.1",
"OBSIDIAN_PORT": "27124"
}
}
}
}
```
## Option 2: Using Python directly
Find your python path first:
```bash
which python3
```
Then use this config (replace the python path with your actual path):
```json
{
"mcpServers": {
"obsidian": {
"command": "/usr/local/bin/python3",
"args": ["-m", "custom_obsidian_mcp.server"],
"env": {
"OBSIDIAN_API_KEY": "d64200754fffb4ef4b8f1761c139da765d3255e69079b771fb0695699f210f75",
"OBSIDIAN_HOST": "127.0.0.1",
"OBSIDIAN_PORT": "27124"
}
}
}
}
```
## Quick Setup Commands
```bash
# 1. Get your uvx path
which uvx
# 2. Navigate to the MCP project
cd /path/to/custom-obsidian-mcp
# 3. Install
uv sync
# 4. Verify it works
python verify_installation.py
# 5. Copy the config above into Perplexity
# - Update the "command" path to match your uvx/python path
# - Update API key if you regenerated it
# - Save and restart Perplexity
# 6. Test in Perplexity
# Ask: "List the files in my Obsidian vault"
```
## Notes
- Your API key from the brief: `d64200754fffb4ef4b8f1761c139da765d3255e69079b771fb0695699f210f75`
- Default port: `27124`
- Host: `127.0.0.1` (localhost)
If you regenerated your API key in Obsidian, replace the value in the config above.
## Test After Setup
After restarting Perplexity, try:
1. "List files in my Obsidian vault"
2. "Search my vault for [topic]"
3. "Create a test note called 'MCP Test'"
If all three work, you're good to go! š