We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/joytorm/webforge-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
styles.d.ts•610 B
import type { ListStylesResponse, StyleDetailsResponse } from '../types.js';
/**
* List all available design styles
*/
export declare function listStyles(): Promise<ListStylesResponse>;
/**
* Get detailed information about a specific style
*/
export declare function getStyleDetails(styleId: string): Promise<StyleDetailsResponse>;
/**
* Search styles by category, industry, or business type
*/
export declare function searchStyles(params: {
category?: string;
industry?: string;
businessType?: string;
limit?: number;
}): Promise<ListStylesResponse>;
//# sourceMappingURL=styles.d.ts.map