#!/usr/bin/env node
/**
 * Parserator MCP Server - Production Implementation
 *
 * Model Context Protocol server that exposes Parserator's Architect-Extractor
 * parsing capabilities to AI agents and other MCP-compatible systems.
 *
 * This server provides intelligent data parsing as a standardized tool
 * that any MCP-compatible agent can use.
 */
/**
 * Parserator MCP Server Class
 *
 * Implements the Model Context Protocol to expose Parserator's
 * intelligent parsing capabilities to AI agents.
 */
declare class ParseratorMCPServer {
    private server;
    private parseratorClient;
    constructor(apiKey: string);
    private setupHandlers;
    private handleParseData;
    private handleValidateSchema;
    private handleSuggestSchema;
    private handleTestConnection;
    private getUsageExamples;
    start(): Promise<void>;
}
export { ParseratorMCPServer };
//# sourceMappingURL=server.d.ts.map