From 4692d28b9336a3f76f45668bb7e54d3edfcae94a Mon Sep 17 00:00:00 2001 From: Den Delimarsky Date: Tue, 19 May 2026 07:02:50 +0000 Subject: [PATCH 1/2] Remove Google MCP entries from small-business plugin The Google-hosted MCP endpoints (gmail, calendar, drive) require an OAuth client_id at connection time and do not support dynamic client registration. The .mcp.json schema currently has no way to provide a client_id for these endpoints, so the connection cannot succeed from this plugin. This brings small-business in line with the other plugins in this repo, which had the same entries removed in #184. Users can connect Gmail, Calendar, and Drive through the Connectors Directory in the app, which handles the authentication separately. --- small-business/.mcp.json | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/small-business/.mcp.json b/small-business/.mcp.json index c18bd6f9..72679258 100644 --- a/small-business/.mcp.json +++ b/small-business/.mcp.json @@ -39,18 +39,6 @@ "ms365": { "type": "http", "url": "https://microsoft365.mcp.claude.com/mcp" - }, - "gmail": { - "type": "http", - "url": "https://gmailmcp.googleapis.com/mcp/v1" - }, - "google calendar": { - "type": "http", - "url": "https://calendarmcp.googleapis.com/mcp/v1" - }, - "google drive": { - "type": "http", - "url": "https://drivemcp.googleapis.com/mcp/v1" } } } From 2dd1e08cd8680a96bf168f8624c370236bd9a000 Mon Sep 17 00:00:00 2001 From: Den Delimarsky Date: Mon, 25 May 2026 06:05:19 +0000 Subject: [PATCH 2/2] =?UTF-8?q?security:=20address=20BLOCK=20finding=20on?= =?UTF-8?q?=20#240=20=E2=80=94=20clear=20Google=20MCP=20URLs=20instead=20o?= =?UTF-8?q?f=20deleting=20entries=20(match=20#184)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- small-business/.mcp.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/small-business/.mcp.json b/small-business/.mcp.json index 72679258..5463e780 100644 --- a/small-business/.mcp.json +++ b/small-business/.mcp.json @@ -39,6 +39,18 @@ "ms365": { "type": "http", "url": "https://microsoft365.mcp.claude.com/mcp" + }, + "gmail": { + "type": "http", + "url": "" + }, + "google calendar": { + "type": "http", + "url": "" + }, + "google drive": { + "type": "http", + "url": "" } } }