blob: 9abc023f3fcc64b2f2a393aa4fc44cf967fc539c (
plain)
1
2
3
4
5
6
7
8
|
export type { LoadMcpStatus, McpStatusResult } from "./logic/view-model";
export { default as McpStatusView } from "./ui/McpStatusView.svelte";
/** Public module manifest — aggregated by the shell's "Loaded Modules" view. */
export const manifest = {
name: "mcp",
description: "Per-conversation MCP (Model Context Protocol) server status",
} as const;
|