@fastmcp-me/mcp-sqlew
Version:
MCP server for efficient context sharing between Claude Code sub-agents with 96% token reduction via action-based tools
35 lines • 910 B
TypeScript
/**
* Configuration management tools for MCP Shared Context Server
* Provides tools to get and update auto-deletion configuration
*/
/**
* Get current configuration settings
*
* @returns Current configuration values
*/
export declare function getConfig(): {
ignoreWeekend: boolean;
messageRetentionHours: number;
fileHistoryRetentionDays: number;
};
/**
* Update configuration settings
* Validates values before updating
*
* @param params - Configuration parameters to update
* @returns Updated configuration
*/
export declare function updateConfig(params: {
ignoreWeekend?: boolean;
messageRetentionHours?: number;
fileHistoryRetentionDays?: number;
}): {
success: boolean;
config: {
ignoreWeekend: boolean;
messageRetentionHours: number;
fileHistoryRetentionDays: number;
};
message: string;
};
//# sourceMappingURL=config.d.ts.map