From f8fdb034be9b79cb5397d73c57715d32150ccf51 Mon Sep 17 00:00:00 2001 From: Teodor Calin Date: Sat, 5 Sep 2026 00:41:41 +0300 Subject: [PATCH] feat(integrations): add Pilot Protocol --- integrations/catalog-index.js | 14 ++++++----- integrations/catalog/pilot-protocol.json | 32 ++++++++++++++++++++++++ 2 files changed, 40 insertions(+), 6 deletions(-) create mode 100644 integrations/catalog/pilot-protocol.json diff --git a/integrations/catalog-index.js b/integrations/catalog-index.js index b229b450..5ec7afd3 100644 --- a/integrations/catalog-index.js +++ b/integrations/catalog-index.js @@ -73,12 +73,13 @@ import entry67 from "./catalog/mongodb.json" with { type: "json" }; import entry68 from "./catalog/neon.json" with { type: "json" }; import entry69 from "./catalog/obsidian.json" with { type: "json" }; import entry70 from "./catalog/paypal.json" with { type: "json" }; -import entry71 from "./catalog/playwright.json" with { type: "json" }; -import entry72 from "./catalog/redis.json" with { type: "json" }; -import entry73 from "./catalog/resend.json" with { type: "json" }; -import entry74 from "./catalog/sequential-thinking.json" with { type: "json" }; -import entry75 from "./catalog/superhuman-mail.json" with { type: "json" }; -import entry76 from "./catalog/time.json" with { type: "json" }; +import entry71 from "./catalog/pilot-protocol.json" with { type: "json" }; +import entry72 from "./catalog/playwright.json" with { type: "json" }; +import entry73 from "./catalog/redis.json" with { type: "json" }; +import entry74 from "./catalog/resend.json" with { type: "json" }; +import entry75 from "./catalog/sequential-thinking.json" with { type: "json" }; +import entry76 from "./catalog/superhuman-mail.json" with { type: "json" }; +import entry77 from "./catalog/time.json" with { type: "json" }; export const INTEGRATION_CATALOG_ENTRIES = [ entry0, @@ -158,4 +159,5 @@ export const INTEGRATION_CATALOG_ENTRIES = [ entry74, entry75, entry76, + entry77, ]; diff --git a/integrations/catalog/pilot-protocol.json b/integrations/catalog/pilot-protocol.json new file mode 100644 index 00000000..cfd2ee7c --- /dev/null +++ b/integrations/catalog/pilot-protocol.json @@ -0,0 +1,32 @@ +{ + "id": "pilot-protocol", + "name": "Pilot Protocol", + "description": "Discover specialist agents and exchange messages with trusted peers.", + "appUrl": "https://pilotprotocol.network", + "docsUrl": "https://github.com/pilot-protocol/pilot-mcp", + "iconBg": "#111827", + "keywords": [ + "agents", + "agent-to-agent", + "peer-to-peer", + "discovery" + ], + "connectionOptions": [ + { + "id": "local", + "provider": "mcp", + "transport": { + "kind": "stdio", + "serverName": "pilot", + "command": "npx", + "args": [ + "-y", + "pilotprotocol-mcp" + ] + }, + "auth": { + "strategy": "none" + } + } + ] +}