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.
まだレビューはありません. 最初のレビューを投稿しましょう!
会話に参加するにはサインインしてください
Create or update a component. Parameters: name (string), description (string), text (string), version (number)
Retrieve a component by name. Parameters: name (string)
List all components.
Delete a component by name. Parameters: name (string)
Create or update a persona. Parameters: name (string), description (string), template (string), version (number)
Retrieve a persona by name. Parameters: name (string)
List all personas.
Delete a persona by name. Parameters: name (string)
Activate a persona by name. Parameters: name (string)
Retrieve the currently active persona.
Render the persona template by name. Parameters: name (string)