mirror of
https://github.com/bknd-io/bknd/
synced 2026-08-04 09:06:01 +00:00
added mcp ui as tool
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
import { Empty } from "ui/components/display/Empty";
|
||||
import { Route } from "wouter";
|
||||
import ToolsMcp from "./mcp/mcp";
|
||||
|
||||
export default function ToolsRoutes() {
|
||||
return (
|
||||
<>
|
||||
<Route path="/" component={ToolsIndex} />
|
||||
<Route path="/mcp" component={ToolsMcp} />
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
function ToolsIndex() {
|
||||
return <Empty title="Tools" description="Select a tool to continue." />;
|
||||
}
|
||||
Reference in New Issue
Block a user