This MCP server, developed by Brad Fair, implements a persona management system for Cline using shared components and templates. Built with TypeScript, it provides tools for creating, updating, and activating personas defined in .clinerules files. The implementation features component reusability, mustache-style variable substitution in templates, dependency validation, and version tracking for both components and personas. By abstracting persona management into standardized MCP endpoints, it allows AI systems to dynamically adjust their behavior and responses. This server is particularly useful for scenarios requiring flexible AI personality management, such as customer support chatbots, interactive storytelling applications, or personalized AI assistants that need to adapt to different user preferences or contexts.
No reviews yet. Be the first to review!
Sign in to join the conversation
Create a new component. Parameters: name (string), description (string), text (string), version (number)
Retrieve a component by name. Parameters: name (string)
List all components available in the server.
Delete a component by name. Parameters: name (string)
Create a new persona. Parameters: name (string), description (string), template (string), version (number)
Retrieve a persona by name. Parameters: name (string)
List all personas available in the server.
Delete a persona by name. Parameters: name (string)
Activate a persona by name. Parameters: name (string)
Retrieve the currently active persona.
Render a persona template by name. Parameters: name (string)