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.
npm install -g claude-agents-power
You can configure Claude Desktop in two ways:
claude-agents-power --install
Add to your claude_desktop_config.json
:
{
"mcpServers": {
"claude-agents-power": {
"command": "claude-agents-power"
}
}
}
Once installed, you can use Claude Agents Power directly in Claude. Here's an example prompt:
claude-agents-power를 이용해서 이 프로젝트를 위한 추천 및 agents/*.md 파일을 다운로드 해줘
Claude will:
Check that agents were downloaded correctly:
ls ./claude/agents/
You should see downloaded .md files for the recommended roles.
Once the agents are installed, you can use specialized roles in Claude with prompts like:
frontend-developer를 사용해서 React 컴포넌트를 만들어줘
data-scientist로 이 데이터를 분석해줘
devops-engineer가 CI/CD 파이프라인을 설정해줘
The server includes over 100 professional roles across multiple categories:
Claude Agents Power supports convenient slash commands in Claude Code:
/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
npx claude-agents-power --install-slash-commands
npx claude-agents-power --uninstall-slash-commands
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"]
# 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"
]
# 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"
]
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.
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.
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"
]
}
}
}
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.
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.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.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