From 5f8e814d76ee76dc7571479e7b58eaa0eff7a6f2 Mon Sep 17 00:00:00 2001 From: Fred Chu Date: Fri, 20 Mar 2026 13:38:10 +0800 Subject: [PATCH] Fix incorrect Slack MCP server URL in cowork-plugin-management examples MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The two example files used `slack.mcp.claude.com` which does not resolve (DNS failure). All other plugins in the repo use `mcp.slack.com` — Slack's official MCP server endpoint, which returns HTTP 401 as expected. Fixes #15 Co-Authored-By: Claude Opus 4.6 (1M context) --- .../cowork-plugin-customizer/examples/customized-mcp.json | 2 +- .../skills/create-cowork-plugin/references/example-plugins.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cowork-plugin-management/skills/cowork-plugin-customizer/examples/customized-mcp.json b/cowork-plugin-management/skills/cowork-plugin-customizer/examples/customized-mcp.json index f9aef7c1..71f9eb95 100644 --- a/cowork-plugin-management/skills/cowork-plugin-customizer/examples/customized-mcp.json +++ b/cowork-plugin-management/skills/cowork-plugin-customizer/examples/customized-mcp.json @@ -13,7 +13,7 @@ }, "slack": { "type": "http", - "url": "https://slack.mcp.claude.com/mcp" + "url": "https://mcp.slack.com/mcp" }, "figma": { "type": "http", diff --git a/cowork-plugin-management/skills/create-cowork-plugin/references/example-plugins.md b/cowork-plugin-management/skills/create-cowork-plugin/references/example-plugins.md index 34c0052a..65fed7b4 100644 --- a/cowork-plugin-management/skills/create-cowork-plugin/references/example-plugins.md +++ b/cowork-plugin-management/skills/create-cowork-plugin/references/example-plugins.md @@ -345,7 +345,7 @@ connects in that category. Plugins are tool-agnostic. }, "slack": { "type": "http", - "url": "https://slack.mcp.claude.com/mcp" + "url": "https://mcp.slack.com/mcp" } } }