Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions packages/connections/src/mcp-presets.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ describe("MCP_PRESETS", () => {
expect(slugs).toEqual(
[
"attio",
"canva",
"exa",
"github-mcp",
"granola",
Expand Down Expand Up @@ -79,6 +80,7 @@ describe("MCP_PRESETS", () => {
railway: "https://mcp.railway.com",
posthog: "https://mcp.posthog.com/mcp",
sumble: "https://mcp.sumble.com/",
canva: "https://mcp.canva.com/mcp",
});
});

Expand All @@ -105,4 +107,9 @@ describe("MCP_PRESETS", () => {
test("mcpPresetBySlug returns undefined for an unknown slug", () => {
expect(mcpPresetBySlug("not-a-preset")).toBeUndefined();
});

test("Canva is a DCR-verified OAuth preset with no simple-icons mark yet", () => {
expect(mcpPresetBySlug("canva")?.connectionMode).toBe("oauth");
expect(mcpPresetBySlug("canva")?.icon).toBeUndefined();
});
});
11 changes: 11 additions & 0 deletions packages/connections/src/mcp-presets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,17 @@ export const MCP_PRESETS: readonly McpPreset[] = [
connectionMode: "oauth",
docsUrl: "https://sumble.com/guides/account-research",
},
{
// No simple-icons listing for Canva (CL-6647) — same gap as Granola
// and Sumble above, so this card falls back to the initial-letter
// tile rather than risk a hand-traced or doctored mark.
slug: "canva",
displayName: "Canva",
description: "Design decks, docs, and graphics.",
url: "https://mcp.canva.com/mcp",
connectionMode: "oauth",
docsUrl: "https://www.canva.dev/docs/mcp/",
},
];

export const MCP_PRESET_CONNECTOR_IDS: readonly string[] = MCP_PRESETS.flatMap(
Expand Down
2 changes: 1 addition & 1 deletion workflows/assistant/test/manager-tools-scenario.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ async function runScenario(
new AbortController().signal,
);
expect(String(afterConnect.content)).toContain(
"Not connected: GitHub MCP, Notion, Sentry, Attio, Railway, PostHog, Sumble.",
"Not connected: GitHub MCP, Notion, Sentry, Attio, Railway, PostHog, Sumble, Canva.",
);
expect(String(afterConnect.content)).toContain(
"Connected: Granola, Exa, Linear.",
Expand Down
Loading