From e3081481b15d9a7adbd62ef348733de4ee6938f7 Mon Sep 17 00:00:00 2001 From: Kesku Date: Mon, 24 Nov 2025 20:11:29 +0000 Subject: [PATCH 1/2] feat: add Perplexity MCP server --- README.md | 3 ++- servers/index.json | 1 + servers/perplexity/icon.svg | 9 +++++++++ servers/perplexity/server.json | 20 ++++++++++++++++++++ 4 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 servers/perplexity/icon.svg create mode 100644 servers/perplexity/server.json diff --git a/README.md b/README.md index 936070c..5b5537e 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ To add a server, see the [Contributing Guidelines](CONTRIBUTING.md). | **Sentry** | Error tracking and performance monitoring. | Install | | **Supabase** | Create and manage Supabase projects. | Install | | **Vercel** | Manage projects and deployments on Vercel. | Install | -| **GitLab** | DevSecOps platform for code, CI/CD, and security. | Install | +| **GitLab** | DevSecOps platform for code, CI/CD, and security. | Install | | **PostHog** | Analytics, error tracking, and feature flags. | Install | | **Netlify** | Build and deploy web projects. | Install | | **Heroku** | Manage Heroku apps and resources. | Install | @@ -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": "" + } + } +} + From ae504aeaf17b85de87e9d82e3b2284bbb9bb6a84 Mon Sep 17 00:00:00 2001 From: Kesku <62210496+kesku@users.noreply.github.com> Date: Mon, 24 Nov 2025 20:24:53 +0000 Subject: [PATCH 2/2] revert GitLab installation link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5b5537e..fc49599 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ To add a server, see the [Contributing Guidelines](CONTRIBUTING.md). | **Sentry** | Error tracking and performance monitoring. | Install | | **Supabase** | Create and manage Supabase projects. | Install | | **Vercel** | Manage projects and deployments on Vercel. | Install | -| **GitLab** | DevSecOps platform for code, CI/CD, and security. | Install | +| **GitLab** | DevSecOps platform for code, CI/CD, and security. | Install | | **PostHog** | Analytics, error tracking, and feature flags. | Install | | **Netlify** | Build and deploy web projects. | Install | | **Heroku** | Manage Heroku apps and resources. | Install |