Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
},
"metadata": {
"description": "Official Perplexity AI plugin providing real-time web search, reasoning, and research capabilities",
"version": "0.7.1"
"version": "0.8.0"
},
"plugins": [
{
"name": "perplexity",
"source": "./",
"description": "Real-time web search, reasoning, and research through Perplexity's API",
"version": "0.7.1",
"version": "0.8.0",
"author": {
"name": "Perplexity AI",
"email": "api@perplexity.ai"
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/publish-mcp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ jobs:
name: production
permissions:
contents: read
id-token: write

steps:
- name: Checkout code
Expand All @@ -24,7 +23,10 @@ jobs:
curl -L "https://github.com/modelcontextprotocol/registry/releases/latest/download/mcp-publisher_$(uname -s | tr '[:upper:]' '[:lower:]')_$(uname -m | sed 's/x86_64/amd64/;s/aarch64/arm64/').tar.gz" | tar xz mcp-publisher

- name: Login to MCP Registry
run: ./mcp-publisher login github-oidc
run: |
echo "${{ secrets.MCP_REGISTRY_PRIVATE_KEY }}" > key.pem
./mcp-publisher login dns --domain perplexity.ai --private-key "$(openssl pkey -in key.pem -noout -text | grep -A3 'priv:' | tail -n +2 | tr -d ' :\n')"
rm key.pem

- name: Publish to MCP Registry
run: ./mcp-publisher publish
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@perplexity-ai/mcp-server",
"version": "0.7.1",
"mcpName": "io.github.perplexityai/mcp-server",
"version": "0.8.0",
"mcpName": "ai.perplexityai/mcp-server",
"description": "Real-time web search, reasoning, and research through Perplexity's API",
"keywords": [
"ai",
Expand Down
6 changes: 3 additions & 3 deletions server.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.perplexityai/mcp-server",
"name": "ai.perplexityai/mcp-server",
"title": "Perplexity API Platform",
"description": "Real-time web search, reasoning, and research through Perplexity's API",
"version": "0.7.1",
"version": "0.8.0",
"packages": [
{
"registryType": "npm",
"identifier": "@perplexity-ai/mcp-server",
"version": "0.7.1",
"version": "0.8.0",
"transport": {
"type": "stdio"
}
Expand Down
2 changes: 1 addition & 1 deletion src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ export function createPerplexityServer(serviceOrigin?: string) {
const server = new McpServer(
{
name: "io.github.perplexityai/mcp-server",
version: "0.7.1",
version: "0.8.0",
},
{
instructions:
Expand Down