diff --git a/README.md b/README.md index 936070c..fc49599 100644 --- a/README.md +++ b/README.md @@ -52,6 +52,7 @@ To add a server, see the [Contributing Guidelines](CONTRIBUTING.md). | **Select Star** | Data catalog, lineage, and context. | Install | | **SonarQube** | Analyze code with SonarQube. | Install | | **MS Learn Docs** | Search Microsoft docs. | Install | +| **Perplexity** | Real-time web search, reasoning, and research capabilities through Sonar models and the Search API. | Install | | **Stripe** | Payment processing APIs. | Install | | **PayPal** | Payment APIs. | Install | | **Plaid** | Access financial account data. | Install | diff --git a/servers/index.json b/servers/index.json index e485eb5..43b1a39 100644 --- a/servers/index.json +++ b/servers/index.json @@ -46,6 +46,7 @@ "select-star", "sonarqube", "ms-learn-docs", + "perplexity", "stripe", "paypal", "plaid", diff --git a/servers/perplexity/icon.svg b/servers/perplexity/icon.svg new file mode 100644 index 0000000..43b2a3f --- /dev/null +++ b/servers/perplexity/icon.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/servers/perplexity/server.json b/servers/perplexity/server.json new file mode 100644 index 0000000..9f69700 --- /dev/null +++ b/servers/perplexity/server.json @@ -0,0 +1,20 @@ +{ + "name": "Perplexity", + "description": "Real-time web search, reasoning, and research capabilities through Sonar models and the Search API.", + "transport": [ + "stdio" + ], + "icon": "./icon.svg", + "oauth": false, + "config": { + "command": "npx", + "args": [ + "-y", + "@perplexity-ai/mcp-server" + ], + "env": { + "PERPLEXITY_API_KEY": "" + } + } +} +