parserator-mcp-server
Version:
Intelligent data parsing for AI agents via Model Context Protocol
30 lines • 911 B
TypeScript
#!/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