#!/usr/bin/env node /** * ZPL Engine MCP Server * * Exposes the Zero Point Logic stability engine to any MCP client * (Claude Code, Cursor, Windsurf, etc.) via the Model Context Protocol. * * The engine performs post-binary neutrality analysis — this MCP wraps it * with domain-specific "lenses" for finance, games, AI, security, and crypto. * * IMPORTANT: The engine formula is a trade secret. This MCP only sends * (d, bias, samples) to the API and receives (ain, status, deviation). * No computation logic exists in this codebase. */ import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; export declare function createSandboxServer(): McpServer;