We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/adambdooley/foundry-vtt-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
campaign-status-macro.d.ts•584 B
/**
* Get current status from toggle element classes
*/
declare function getCurrentStatus(element: any): "not_started" | "in_progress" | "completed" | "skipped";
/**
* Get next status in cycle
*/
declare function getNextStatus(current: any): string;
/**
* Update toggle visual appearance
*/
declare function updateToggleVisual(element: any, newStatus: any): void;
/**
* Get status icon
*/
declare function getStatusIcon(status: any): any;
/**
* Format status for display
*/
declare function formatStatus(status: any): any;
//# sourceMappingURL=campaign-status-macro.d.ts.map