From b01315dc14f6b4badfa07e04ca0de1b90fab48b9 Mon Sep 17 00:00:00 2001 From: Sam Sokolin Date: Tue, 4 Aug 2026 20:15:21 -0400 Subject: [PATCH] Fix MCP servers not being discovered for Gong and Salesforce Both mcp.json files declared $schema: https://cursor.com/schemas/mcp.json. parsePluginMcpConfig treats any $schema outside SUPPORTED_SCHEMA_IDS (the two agent-plugins.org 1.0.0 ids) as unsupported and returns null, so indexing found zero MCP servers and both plugins registered with no components. The Google plugins omit $schema entirely, which is why they were unaffected. Removing the key restores discovery. Co-authored-by: Cursor --- third_party/gong/mcp.json | 1 - third_party/salesforce/mcp.json | 1 - 2 files changed, 2 deletions(-) diff --git a/third_party/gong/mcp.json b/third_party/gong/mcp.json index b3722f7..a3776cf 100644 --- a/third_party/gong/mcp.json +++ b/third_party/gong/mcp.json @@ -1,5 +1,4 @@ { - "$schema": "https://cursor.com/schemas/mcp.json", "mcpServers": { "gong": { "url": "https://mcp.gong.io/mcp", diff --git a/third_party/salesforce/mcp.json b/third_party/salesforce/mcp.json index 8b4f1f3..3c1e4ce 100644 --- a/third_party/salesforce/mcp.json +++ b/third_party/salesforce/mcp.json @@ -1,5 +1,4 @@ { - "$schema": "https://cursor.com/schemas/mcp.json", "mcpServers": { "salesforce": { "type": "http",