26 lines
1.0 KiB
TypeScript
26 lines
1.0 KiB
TypeScript
import { ToolCase } from "lucide-react";
|
|
import ContactUsView from "../views/contactUsView";
|
|
|
|
export default function MCPToolGroups() {
|
|
return (
|
|
<>
|
|
<div className="flex items-center justify-between gap-4 mb-4">
|
|
<div>
|
|
<h2 className="text-lg font-semibold tracking-tight">MCP tool groups</h2>
|
|
<p className="text-muted-foreground text-sm">Configure tool groups for MCP servers to organize and govern tools.</p>
|
|
</div>
|
|
</div>
|
|
<div className="rounded-sm border">
|
|
<div className="flex w-full flex-col items-center justify-center py-16">
|
|
<ContactUsView
|
|
className="mx-auto w-full max-w-lg"
|
|
icon={<ToolCase className="h-[5.5rem] w-[5.5rem]" strokeWidth={1} />}
|
|
title="Unlock MCP Tool Groups"
|
|
description="This feature is a part of the Bifrost enterprise license. Configure tool groups for MCP servers to organize your MCP tools and govern them across your organization."
|
|
readmeLink="https://docs.getbifrost.ai/mcp/overview"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
} |