markdown-editor-mcp
Version:
MCP server for markdown editing and management
26 lines (25 loc) • 478 B
TypeScript
/**
* Get the entire config including system information
*/
export declare function getConfig(): Promise<{
content: {
type: string;
text: string;
}[];
}>;
/**
* Set a specific config value
*/
export declare function setConfigValue(args: unknown): Promise<{
content: {
type: string;
text: string;
}[];
isError: boolean;
} | {
content: {
type: string;
text: string;
}[];
isError?: undefined;
}>;