AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Persona Mcp

mcp-pidster-persona-mcp · by pidster

An MCP Server that provides Personas

No reviews yet
0 installs
45 views
0.0% view→install

Install

$ agentstack add mcp-pidster-persona-mcp

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access Used
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-pidster-persona-mcp)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Persona Mcp? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Personas MCP Server

[](https://github.com/pidster/persona-mcp/releases) [](./LICENSE) [](https://nodejs.org/) [](https://www.typescriptlang.org/)

A Model Context Protocol (MCP) server that enhances AI assistants with specialized personas for improved problem-solving in software development tasks.

Why Use Personas?

  • Focused Solutions: Get targeted advice from the right perspective (architecture vs implementation vs debugging)
  • Deep Expertise: Each persona brings specialized knowledge and problem-solving approaches
  • Consistent Approach: Personas maintain consistent methodologies across conversations
  • Faster Problem Solving: Skip generic advice and get straight to expert-level guidance
  • Team Alignment: Use the same personas your team would consult in real life

Quick Start (5 minutes)

# 1. Clone and build
git clone https://github.com/pidster/persona-mcp.git
cd persona-mcp
npm install && npm run build

# 2. Add to Claude Desktop config (~/.claude/claude_desktop_config.json)
{
  "mcpServers": {
    "personas": {
      "command": "node",
      "args": ["/absolute/path/to/persona-mcp/dist/index.js"]
    }
  }
}

# 3. Restart Claude Desktop

# 4. Test in Claude: "Please adopt the architect persona"

For detailed setup instructions, see the [Installation Guide](./docs/books/installation.md).

Available Personas

Click to see all 12 available personas

  • Architect: System design, high-level architecture, scalability patterns
  • Debugger: Systematic debugging, root cause analysis, troubleshooting
  • Developer: Clean code implementation, best practices, maintainability
  • Engineering Manager: Team leadership, project management, technical strategy
  • Optimizer: Performance tuning, resource optimization, efficiency
  • Performance Analyst: Performance monitoring, bottleneck identification, optimization
  • Product Manager: Requirements gathering, user stories, feature prioritization
  • Reviewer: Code quality analysis, security reviews, performance optimization
  • Security Analyst: Security assessment, threat modeling, vulnerability analysis
  • Technical Writer: Documentation, API docs, technical communication
  • Tester: Test strategy, quality assurance, test automation
  • UI Designer: User interface design, user experience, accessibility

Documentation

Getting Started

  • [Installation Guide](./docs/books/installation.md) - Detailed installation and setup
  • [Quick Start Guide](./docs/quick-start.md) - Get running in 5 minutes
  • [Claude Integration](./docs/books/claude-integration.md) - Connect with Claude Desktop
  • [Using Personas](./docs/books/using-personas.md) - How to effectively use personas

Customization

  • [Creating Custom Personas](./docs/books/creating-personas.md) - Build your own specialized personas
  • [API Client Integration](./docs/books/api-clients.md) - Integrate with JavaScript, Python, Go, Ruby

Technical Reference

  • [API Reference](./docs/engineering/api-reference.md) - Complete API documentation
  • [System Architecture](./docs/architecture/system-overview.md) - Technical architecture overview
  • [Recommendation System](./docs/designs/recommendation-system.md) - How persona matching works
  • [Metrics & Monitoring](./docs/engineering/metrics-monitoring.md) - OpenTelemetry metrics guide

Development

  • [Development Setup](./docs/engineering/development-setup.md) - Set up your dev environment
  • [Contributing Guide](./CONTRIBUTING.md) - How to contribute to the project
  • [Examples](./examples/) - Code examples in multiple languages

Support

  • [FAQ](./docs/FAQ.md) - Frequently asked questions
  • [Troubleshooting Guide](./docs/books/troubleshooting-runbook.md) - Common issues and solutions
  • [Roadmap](./plans/roadmap.md) - Future plans and features

Features

  • Dynamic Persona Loading: Automatically loads personas from multiple sources
  • Intelligent Recommendations: AI-powered persona matching for your tasks
  • Multi-Factor Scoring: Advanced algorithm considering keywords, expertise, and complexity
  • Full MCP Support: Resources, prompts, tools, and streaming responses
  • REST API: Direct HTTP endpoints for non-MCP clients
  • OpenTelemetry Metrics: Built-in performance monitoring

Examples

Using Personas in Claude

// Get recommendations
Which persona would be best for debugging a memory leak?

// Adopt a persona
Please adopt the debugger persona to help me troubleshoot this issue.

// Compare personas
Compare the architect and developer personas for API design.

REST API Usage

# Get all personas
curl http://localhost:3000/api/personas

# Get recommendations
curl -X POST http://localhost:3000/api/recommend \
  -H "Content-Type: application/json" \
  -d '{"query": "debug memory leak", "limit": 3}'

See more [examples](./examples/) for different programming languages.

Configuring AI Assistants for Automatic Persona Selection

To enable your AI assistant to automatically select and adopt the most appropriate persona for each task, add instructions to your assistant's configuration file:

For Claude (CLAUDE.md)

When the Personas MCP server is available, automatically select and adopt the most appropriate persona for each task by:
1. Analyzing the user's request to identify the type of task (debugging, architecture, implementation, etc.)
2. Using the @recommend-persona tool to get persona recommendations
3. Adopting the highest-scoring persona for the task
4. Informing the user which persona was selected and why

Example: If a user asks about debugging a memory leak, automatically adopt the debugger persona.

For Other AI Assistants

Similar instructions can be added to:

  • CURSOR.md for Cursor
  • .github/copilot-instructions.md for GitHub Copilot
  • Project-specific AI configuration files

See our [AI Assistant Configuration Guide](./docs/books/ai-assistant-configuration.md) for detailed examples.

Contributing

We welcome contributions! Please see our [Contributing Guide](./CONTRIBUTING.md) for details on:

  • Setting up your development environment
  • Adding new personas
  • Submitting pull requests
  • Code style guidelines

Getting Help

  • Report Issues - Bug reports and feature requests
  • [FAQ](./docs/FAQ.md) - Common questions answered
  • Contact: @pidster

License

MIT - See [LICENSE](./LICENSE) file for details


Report an Issue | Request a Feature

If you find this project helpful, please consider giving it a ⭐

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.