Documentation Index Fetch the complete documentation index at: https://docs.agentpowers.ai/llms.txt
Use this file to discover all available pages before exploring further.
Install
Add to your .mcp.json (no global install needed): {
"mcpServers" : {
"agentpowers" : {
"command" : "npx" ,
"args" : [ "@agentpowers/mcp-server" ]
}
}
}
Or add via the CLI: claude mcp add agentpowers -- npx -y @agentpowers/mcp-server
See MCP Server guide for full setup. Clone the standalone skill directly. No Node.js or Python required: git clone https://github.com/AgentPowers-AI/agentpowers-skill ~/.claude/skills/agentpowers
Then use /agentpowers in any Claude Code conversation. See Skill guide for details. Run directly with npx (no global install needed): npx @agentpowers/cli setup
Auto-configures MCP for all detected AI tools. Requires Node.js 18+. pip install agentpowers is still supported but npx is preferred.
Search for Skills
npx @agentpowers/cli search "code review"
This returns a table of matching skills with titles, prices, security status, and download counts.
Install a Free Skill
npx @agentpowers/cli install my-awesome-skill
The CLI downloads and extracts the skill to ~/.claude/skills/my-awesome-skill/.
Install a Paid Skill
npx @agentpowers/cli install premium-agent
For paid skills, the CLI opens a Stripe Checkout page. After purchase, you receive a license code. The skill installs automatically after payment, or you can redeem the license code later:
npx @agentpowers/cli install premium-agent --code XXXXXXXX-XXXXXXXX-XXXXXXXX
Use In-Conversation (MCP Server)
The MCP server gives Claude access to marketplace tools during your conversation. Add it to your Claude Code settings or .mcp.json:
{
"mcpServers" : {
"agentpowers" : {
"command" : "npx" ,
"args" : [ "@agentpowers/mcp-server" ]
}
}
}
See MCP Server guide for full setup details.
Publish a Skill
Website (Recommended)
CLI
Create your skill file
Write a .skill or .md file with YAML frontmatter: ---
title : My Awesome Skill
description : A skill that does amazing things
category : development
---
Instructions for Claude when using this skill...
Upload and publish
Drop your .skill, .md, or .zip file. The form auto-fills from your frontmatter. Review the details, set a price (or leave free), and hit Publish.
Your skill enters the security review pipeline. Once approved, it appears in the marketplace.
Create your skill directory
my-skill/
├── SKILL.md # Frontmatter with title, description
└── ... # Your skill files
Login and publish
npx @agentpowers/cli login
npx @agentpowers/cli publish --dir ./my-skill --price 5.00
Your skill enters the security review pipeline. Once approved, it appears in the marketplace.
Need Help?
Email Support Reach us at [email protected] for account issues, billing questions, or technical help.
Discord Community Join the AgentPowers Discord to get help from the team and other creators in real time.