We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/AytuncYildizli/legends-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
export interface PartyModeInput {
question: string;
legends?: string[];
category?: string;
max_legends?: number;
}
export interface PartyModeResponse {
question: string;
participants: {
legend_id: string;
name: string;
perspective_hint: string;
expertise: string[];
}[];
discussion_prompt: string;
format_guide: string;
}
/**
* Activate party mode - multiple legends discuss a question
*/
export declare function partyMode(input: PartyModeInput): PartyModeResponse;
/**
* Format party mode response for display
*/
export declare function formatPartyMode(response: PartyModeResponse): string;
export declare const partyModeTool: {
name: string;
description: string;
inputSchema: {
type: "object";
properties: {
question: {
type: string;
description: string;
};
legends: {
type: string;
items: {
type: string;
};
description: string;
};
category: {
type: string;
enum: string[];
description: string;
};
max_legends: {
type: string;
description: string;
};
};
required: string[];
};
};
//# sourceMappingURL=party-mode.d.ts.map