feat(mcp): add Fabric AI workspace integration to MCP presets

Introduced a new MCP preset for Fabric AI, including configuration details such as transport type and API URL. This addition enhances the functionality of the MCP by allowing users to connect their Fabric AI workspace, enabling features like reading and searching workspaces, creating, and updating notes.

Signed-off-by: Innei <tukon479@gmail.com>
This commit is contained in:
Innei 2025-11-05 14:44:58 +08:00
parent 053f680dc0
commit 61398f72f1
No known key found for this signature in database
GPG Key ID: 0F62D33977F021F7
1 changed files with 17 additions and 0 deletions

View File

@ -65,4 +65,21 @@ export const MCP_PRESETS: MCPPreset[] = [
url: "https://api.githubcopilot.com/mcp",
},
},
{
id: "fabric",
name: "fabric",
displayName: "Fabric",
icon: tw`i-simple-icons-modelcontextprotocol`,
description: "Connect your Fabric AI workspace",
features: ["Read & search workspaces", "Create new notes", "Update existing notes"],
quickSetup: true,
authRequired: true,
configTemplate: {
name: "Fabric AI",
transportType: "streamable-http",
url: "https://mcp.api.fabric.so/mcp",
},
},
]