We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/DollhouseMCP/DollhouseMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
/**
* Default personas that ship with DollhouseMCP
*/
export const DEFAULT_PERSONAS = [
'business-consultant.md',
'creative-writer.md',
'debug-detective.md',
'eli5-explainer.md',
'excel-expert.md',
'technical-analyst.md'
] as const;
export type DefaultPersonaFilename = typeof DEFAULT_PERSONAS[number];
/**
* Check if a filename is a default persona
*/
export function isDefaultPersona(filename: string): boolean {
return DEFAULT_PERSONAS.includes(filename as DefaultPersonaFilename);
}