browsirai 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,17 @@
1
+ import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';
2
+
3
+ /**
4
+ * MCP Server setup for browsirai.
5
+ *
6
+ * Creates and configures an McpServer with all browser tools registered,
7
+ * connected to the user's Chrome via CDP.
8
+ */
9
+
10
+ /**
11
+ * Create and return a fully configured MCP server instance with all
12
+ * browser tools registered. The caller is responsible for connecting
13
+ * a transport (e.g. StdioServerTransport).
14
+ */
15
+ declare function createServer(): Promise<McpServer>;
16
+
17
+ export { createServer };