We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mdz-axo/pt-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
/**
* generate_context tool implementation
*/
interface GenerateContextArgs {
path: string;
format: "cursorrules" | "cursor_dir" | "spec_md" | "agents_md" | "custom";
output_path?: string;
analysis_result?: any;
options?: Record<string, any>;
}
export declare function generateContext(args: GenerateContextArgs): Promise<{
content: Array<{
type: string;
text: string;
}>;
}>;
export {};
//# sourceMappingURL=generate-context.d.ts.map