From 854944273c295485a868278328cc8c9061e1c41e Mon Sep 17 00:00:00 2001 From: qirh Date: Mon, 17 Aug 2026 18:53:34 +0000 Subject: [PATCH] Add Agent Plugins 1.0.0 manifest (plugin.json + mcp.json) --- mcp.json | 10 ++++++++++ plugin.json | 11 +++++++++++ 2 files changed, 21 insertions(+) create mode 100644 mcp.json create mode 100644 plugin.json diff --git a/mcp.json b/mcp.json new file mode 100644 index 0000000..fa812a3 --- /dev/null +++ b/mcp.json @@ -0,0 +1,10 @@ +{ + "$schema": "https://agent-plugins.org/schemas/1.0.0/mcp.schema.json", + "mcpServers": { + "perplexity": { + "type": "stdio", + "command": "npx", + "args": ["-y", "@perplexity-ai/mcp-server"] + } + } +} diff --git a/plugin.json b/plugin.json new file mode 100644 index 0000000..7c03fe9 --- /dev/null +++ b/plugin.json @@ -0,0 +1,11 @@ +{ + "$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json", + "name": "perplexity", + "version": "1.2.0", + "description": "Real-time web search, reasoning, and research through Perplexity's API", + "author": { "name": "Perplexity AI", "email": "api@perplexity.ai" }, + "homepage": "https://docs.perplexity.ai/guides/mcp-server", + "repository": "https://github.com/perplexityai/modelcontextprotocol", + "license": "MIT", + "keywords": ["mcp", "search", "web-search", "perplexity", "research", "reasoning", "ai"] +}