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:
parent
053f680dc0
commit
61398f72f1
|
|
@ -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",
|
||||
},
|
||||
},
|
||||
]
|
||||
|
|
|
|||
Loading…
Reference in New Issue