Used to clone and update the upstream Superpowers skills repository that provides expert-crafted workflows and processes for AI assistants.
Format used for SKILL.md files that define the content and structure of both Superpowers library skills and personal custom skills.
Runtime environment for the MCP server that exposes Superpowers skills library tools for finding and loading AI workflow skills.
Format used in skill file frontmatter to define metadata for custom skills including name and description fields.
Superpowers MCP Server for Augment
An MCP (Model Context Protocol) server that brings the powerful Superpowers skills library to Augment CLI. Access proven workflows, expert techniques, and best practices directly in your AI coding assistant.
What is This?
This MCP server exposes the Superpowers skills library as tools that Augment can use. Skills are expert-crafted workflows and processes that guide AI assistants to produce better results.
Available Tools:
find_skills- List all available skills from both the superpowers library and your personal skillsuse_skill- Load a specific skill to guide your work
Prerequisites
Quick Start
1. Clone and Install
The installer will:
Clone the upstream Superpowers repository to
~/.augment/superpowersCreate a personal skills directory at
~/.augment/skillsInstall MCP server dependencies
Provide configuration instructions
2. Configure Augment
Add the MCP server to your Augment configuration file (~/.augment/settings.json):
Note: Replace /path/to/superpower-mcp/ with the actual path where you cloned this repository. The installer will show you the exact path to use.
3. Restart Augment
Restart Augment to load the new MCP server.
4. Test It
Ask Augment:
You should see a list of skills from the Superpowers library.
Usage
Finding Skills
Ask Augment to list available skills:
Or use the tool directly:
Using Skills
Load a skill by name:
Or use the tool directly:
Skill Naming Convention
Superpowers skills:
superpowers:skill-name(from the upstream repository)Personal skills:
my-skill-name(from~/.augment/skills/)
Personal skills with the same name as superpowers skills will override them.
Creating Personal Skills
Create a directory in
~/.augment/skills/with your skill name:mkdir -p ~/.augment/skills/my-custom-skillAdd a
SKILL.mdfile with YAML frontmatter:--- name: my-custom-skill description: Use when you need to do something specific --- # My Custom Skill ## Purpose [Describe what this skill does] ## When to Use [Describe when to use this skill] ## Process 1. [Step 1] 2. [Step 2] 3. [Step 3]The skill will automatically be available through
find_skillsanduse_skill
Architecture
This is an overlay approach that works with the upstream Superpowers repository:
Upstream repository:
~/.augment/superpowers(read-only, updated via git pull)MCP server: This repository (custom Augment integration)
Personal skills:
~/.augment/skills(your custom skills)
The MCP server reads skills from both the upstream repository and your personal skills directory.
Management
Update Superpowers
To get the latest skills from the upstream repository:
Then restart Augment.
Uninstall
This will:
Remove the Superpowers repository (
~/.augment/superpowers)Optionally remove your personal skills (
~/.augment/skills)Keep the MCP server files (you can delete them manually if desired)
Don't forget to remove the MCP server configuration from ~/.augment/settings.json and restart Augment.
Troubleshooting
MCP Server Not Showing Up
Check that the path in
~/.augment/settings.jsonis correctVerify Node.js is installed:
node --version(should be v18+)Check that dependencies are installed:
ls node_modulesin the repo directoryRestart Augment completely
Skills Not Loading
Verify the Superpowers repository exists:
ls ~/.augment/superpowers/skillsRun
./install.sh updateto refresh the repositoryCheck skill file format (must have YAML frontmatter and be named
SKILL.md)
Permission Errors
Make sure the install script is executable:
Links
Superpowers Repository: https://github.com/obra/superpowers
Blog Post: Superpowers for Claude Code
Model Context Protocol: https://modelcontextprotocol.io/
Augment: https://www.augmentcode.com/
Contributing
Issues and pull requests are welcome! This is a community project to make Superpowers accessible to Augment users.
License
MIT License - See LICENSE file for details
The upstream Superpowers repository has its own license. Please refer to https://github.com/obra/superpowers for details.
Credits
Superpowers by Jesse Vincent
MCP Server integration for Augment
This server cannot be installed