Getting Started
Get up and running with Prompt Muse in minutes.
Table of Contents
Prerequisites
Before installing Prompt Muse, ensure you have:
- Node.js 18.x or higher
- npm (comes with Node.js)
- Claude Desktop or another MCP-compatible client
Installation
Step 1: Clone or Download
Clone the repository:
git clone https://github.com/monkey-jeff/prompt-muse.git
cd prompt-muse
Or download the latest release from GitHub Releases.
Step 2: Install Dependencies
npm install
Step 3: Test the Server
Verify the server runs correctly:
node index.js
You should see:
Loaded 7 prompt(s) from /path/to/prompt-muse/prompts
Prompt Muse server running on stdio
Press Ctrl+C to stop the server.
Configuration
Claude Desktop
Configure Prompt Muse in Claude Desktop’s MCP configuration file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
Windows:
%APPDATA%\Claude\claude_desktop_config.json
Add the following configuration (replace /absolute/path/to/prompt-muse with your actual path):
{
"mcpServers": {
"prompt-muse": {
"command": "node",
"args": ["/absolute/path/to/prompt-muse/index.js"]
}
}
}
Important: You must use an absolute path. Relative paths and
~will not work.
Restart Claude Desktop
After updating the configuration:
- Quit Claude Desktop completely
- Restart Claude Desktop
- The prompts should now be available in the MCP prompts menu
Verify Installation
To verify Prompt Muse is working:
- Open Claude Desktop
- Look for the prompts icon or MCP menu
- You should see prompts like “debug”, “explain”, “document”, “branch”, “commit”, etc.
- Try using a prompt (e.g., “explain” on some code)
Next Steps
Troubleshooting
Prompts Not Showing Up
Check the logs:
- Claude Desktop outputs MCP server logs
- Look for errors related to prompt-muse
Common issues:
- Wrong path: Ensure you’re using an absolute path
- Node.js not found: Ensure Node.js is in your PATH
- Dependencies not installed: Run
npm installagain - Invalid YAML: Check that all prompt files in
prompts/are valid YAML
Server Not Starting
Run the server manually to see errors:
node index.js
Check for:
- Missing dependencies
- Invalid prompt YAML files
- Node.js version issues
Getting Help
If you’re still having issues:
- Check GitHub Issues
- Review FAQ
- Open a new issue