/** * @blankstate/mcp - MCP Server Implementation * * Exposes Blankstate Protocol sensing as MCP tools that any * MCP-compatible agent (Cursor, Claude Desktop, etc.) can call. */ import type { BlankstateConfig } from './types/index.js'; /** * Blankstate MCP Server * * Exposes bks_sense, bks_validate, and bks_status as MCP tools. */ export declare class BlankstateMCPServer { private readonly server; private readonly config; private readonly wrapper; private readonly ibf; constructor(config?: BlankstateConfig); private setupHandlers; private handleToolCall; private handleSense; private handleSenseMetric; private formatSenseResponse; private handleValidate; private handleStatus; private formatBlockedResult; start(): Promise; stop(): Promise; } /** * Create and start the MCP server */ export declare function startServer(config?: BlankstateConfig): Promise; //# sourceMappingURL=server.d.ts.map