@antv/mcp-server-chart
Version:
A Model Context Protocol server for generating charts using AntV. This is a TypeScript-based MCP server that provides chart generation capabilities. It allows you to create various types of charts through MCP tools.
27 lines (26 loc) • 581 B
TypeScript
/**
* Log info message
*/
declare function info(message: string, ...args: unknown[]): void;
/**
* Log warning message
*/
declare function warn(message: string, ...args: unknown[]): void;
/**
* Log error message
*/
declare function error(message: string, error?: unknown): void;
/**
* Log success message
*/
declare function success(message: string, ...args: unknown[]): void;
/**
* Logger object for backward compatibility
*/
export declare const logger: {
info: typeof info;
warn: typeof warn;
error: typeof error;
success: typeof success;
};
export {};