drio
Open app

Personas-MCP-Server

Source

Model Context Protocol server implementation for my AI personas

Catalog onlyCatalog onlySTDIO

Overview

Personas-MCP-Server is a Model Context Protocol server implementation designed for managing AI personas, enabling them to interact and function effectively within various applications.

To use the Personas-MCP-Server, clone the repository from GitHub, set up the server environment, and configure your AI personas to communicate through the Model Context Protocol.

  • Implementation of the Model Context Protocol for AI personas - Easy integration with various AI applications - Support for multiple personas to enhance user interaction
  1. Managing multiple AI personas for customer service applications.
  2. Enhancing interactive storytelling with diverse AI characters.
  3. Facilitating personalized user experiences in gaming environments.

Add to your AI client

Use these steps to connect Personas-MCP-Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "personas-mcp-server-aaronbassett": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-personas-mcp-server-aaronbassett"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "personas-mcp-server-aaronbassett": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-personas-mcp-server-aaronbassett"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "personas-mcp-server-aaronbassett": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-personas-mcp-server-aaronbassett"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "personas-mcp-server-aaronbassett": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-personas-mcp-server-aaronbassett"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "personas-mcp-server-aaronbassett": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-personas-mcp-server-aaronbassett"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "personas-mcp-server-aaronbassett": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-personas-mcp-server-aaronbassett"
      ]
    }
  }
}

FAQ

What is the Model Context Protocol?

The Model Context Protocol is a framework that allows AI personas to share context and interact seamlessly.

Is the Personas-MCP-Server open source?

Yes! The Personas-MCP-Server is available under the MIT license on GitHub.

Can I use this server for commercial applications?

Yes, you can use it for both personal and commercial applications as per the MIT license.