Skip to content

Commit 32d606e

Browse files
authored
Merge pull request #86 from perplexityai/kesku/api-1638-update-mcp-server-namespace-from-iogithubperplexityaimcp
Update MCP server namespace from io.github.perplexityai/mcp-server to ai.perplexityai/mcp-server
2 parents e123d95 + bcc902e commit 32d606e

6 files changed

Lines changed: 14 additions & 12 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
},
77
"metadata": {
88
"description": "Official Perplexity AI plugin providing real-time web search, reasoning, and research capabilities",
9-
"version": "0.7.1"
9+
"version": "0.8.0"
1010
},
1111
"plugins": [
1212
{
1313
"name": "perplexity",
1414
"source": "./",
1515
"description": "Real-time web search, reasoning, and research through Perplexity's API",
16-
"version": "0.7.1",
16+
"version": "0.8.0",
1717
"author": {
1818
"name": "Perplexity AI",
1919
"email": "api@perplexity.ai"

.github/workflows/publish-mcp.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ jobs:
1313
name: production
1414
permissions:
1515
contents: read
16-
id-token: write
1716

1817
steps:
1918
- name: Checkout code
@@ -24,7 +23,10 @@ jobs:
2423
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
2524
2625
- name: Login to MCP Registry
27-
run: ./mcp-publisher login github-oidc
26+
run: |
27+
echo "${{ secrets.MCP_REGISTRY_PRIVATE_KEY }}" > key.pem
28+
./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')"
29+
rm key.pem
2830
2931
- name: Publish to MCP Registry
3032
run: ./mcp-publisher publish

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@perplexity-ai/mcp-server",
3-
"version": "0.7.1",
4-
"mcpName": "io.github.perplexityai/mcp-server",
3+
"version": "0.8.0",
4+
"mcpName": "ai.perplexityai/mcp-server",
55
"description": "Real-time web search, reasoning, and research through Perplexity's API",
66
"keywords": [
77
"ai",

server.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3-
"name": "io.github.perplexityai/mcp-server",
3+
"name": "ai.perplexityai/mcp-server",
44
"title": "Perplexity API Platform",
55
"description": "Real-time web search, reasoning, and research through Perplexity's API",
6-
"version": "0.7.1",
6+
"version": "0.8.0",
77
"packages": [
88
{
99
"registryType": "npm",
1010
"identifier": "@perplexity-ai/mcp-server",
11-
"version": "0.7.1",
11+
"version": "0.8.0",
1212
"transport": {
1313
"type": "stdio"
1414
}

src/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ export function createPerplexityServer(serviceOrigin?: string) {
334334
const server = new McpServer(
335335
{
336336
name: "io.github.perplexityai/mcp-server",
337-
version: "0.7.1",
337+
version: "0.8.0",
338338
},
339339
{
340340
instructions:

0 commit comments

Comments
 (0)