Claude Agents Power MCP server

Provides over 150 pre-built professional agent personas across business, technology, and operations roles in multiple languages, enabling users to instantly access domain-specific expertise for tasks like code reviews, financial analysis, and project management without crafting detailed prompts.
Back to servers
Setup instructions
Provider
Seungwon Hong
Release date
Jul 28, 2025
Language
TypeScript
Stats
9 stars

Claude Agents Power is an intelligent MCP server that analyzes your project and recommends the perfect team composition from 100+ professional roles across all company departments.

Installation

Install via npm

npm install -g claude-agents-power

Configure Claude Desktop

You can configure Claude Desktop in two ways:

Automatic Configuration

claude-agents-power --install

Manual Configuration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "claude-agents-power": {
      "command": "claude-agents-power"
    }
  }
}

Usage

Basic Usage in Claude

Once installed, you can use Claude Agents Power directly in Claude. Here's an example prompt:

claude-agents-power를 이용해서 이 프로젝트를 위한 추천 및 agents/*.md 파일을 다운로드 해줘

Claude will:

  1. Analyze your project structure
  2. Recommend suitable roles
  3. Download agents to ./claude/agents/
  4. Make sub-agents ready to use in your project

Verify Installation

Check that agents were downloaded correctly:

ls ./claude/agents/

You should see downloaded .md files for the recommended roles.

Using Sub-Agents

Once the agents are installed, you can use specialized roles in Claude with prompts like:

frontend-developer를 사용해서 React 컴포넌트를 만들어줘
data-scientist로 이 데이터를 분석해줘
devops-engineer가 CI/CD 파이프라인을 설정해줘

Available Roles

The server includes over 100 professional roles across multiple categories:

Technology & Engineering

  • Software Engineer, Frontend Developer, Backend Developer, DevOps Engineer, Data Engineer, and more

Data & Analytics

  • Data Scientist, Data Analyst, Business Intelligence Analyst, and more

Product & Design

  • Product Manager, Product Designer, UX Designer, UI Designer, and others

Marketing & Sales

  • Marketing Manager, Sales Manager, Digital Marketing Specialist, and more

Operations & Management

  • Operations Manager, Project Manager, Program Manager, and others

Slash Commands

Claude Agents Power supports convenient slash commands in Claude Code:

Available Commands

/agents:load [language] [role] [--flags]    # Load and display available agents
/agents:search <query> [--flags]            # Search for agents by skills or keywords
/agents:suggest [context] [--flags]         # Get intelligent agent recommendations
/agents:version [--flags]                   # Check system version and status
/agent-download [--flags]                   # Analyze project and download recommended agents

Install Slash Commands

npx claude-agents-power --install-slash-commands

Uninstall Slash Commands

npx claude-agents-power --uninstall-slash-commands

MCP Tools Reference

The following MCP tools are available for programmatic use:

# Analyze your current project
mcp__claude-agents-power__analyze-project

# Get role recommendations  
mcp__claude-agents-power__recommend-by-keywords ["web", "api", "database"]

# Install recommended agents
mcp__claude-agents-power__install-agents ["frontend-developer", "backend-developer"]

Advanced Usage Examples

Startup MVP Development

# Analyze project and get recommendations
mcp__claude-agents-power__analyze-project

# Install core startup team
mcp__claude-agents-power__install-agents [
  "product-manager",
  "frontend-developer", 
  "backend-developer",
  "growth-marketing-manager"
]

Enterprise Application

# Get recommendations for enterprise project
mcp__claude-agents-power__recommend-by-keywords [
  "enterprise", "security", "scalability", "compliance"
]

# Install enterprise team
mcp__claude-agents-power__install-agents [
  "solution-architect",
  "security-engineer",
  "devops-engineer",
  "compliance-manager"
]

How to install this MCP server

For Claude Code

To add this MCP server to Claude Code, run this command in your terminal:

claude mcp add-json "claude-agents-power" '{"command":"npx","args":["claude-agents-power"]}'

See the official Claude Code MCP documentation for more details.

For Cursor

There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json file so that it is available in all of your projects.

If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json file.

Adding an MCP server to Cursor globally

To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".

When you click that button the ~/.cursor/mcp.json file will be opened and you can add your server like this:

{
    "mcpServers": {
        "claude-agents-power": {
            "command": "npx",
            "args": [
                "claude-agents-power"
            ]
        }
    }
}

Adding an MCP server to a project

To add an MCP server to a project you can create a new .cursor/mcp.json file or add it to the existing one. This will look exactly the same as the global MCP server example above.

How to use the MCP server

Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.

The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.

You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.

For Claude Desktop

To add this MCP server to Claude Desktop:

1. Find your configuration file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json

2. Add this to your configuration file:

{
    "mcpServers": {
        "claude-agents-power": {
            "command": "npx",
            "args": [
                "claude-agents-power"
            ]
        }
    }
}

3. Restart Claude Desktop for the changes to take effect

Want to 10x your AI skills?

Get a free account and learn to code + market your apps using AI (with or without vibes!).

Nah, maybe later