How to Use My Prompt MCP
Learn how to create powerful prompts and SOPs, package them into MCP tools, and deploy them across AI platforms like Claude Desktop.
Platform Overview
My Prompt MCP transforms your prompts into powerful MCP tools
Basic Prompts
Create simple, reusable prompts with parameters. Perfect for text processing, content generation, and quick AI tasks.
SOP Workflows
Build complex, multi-step workflows with conditional logic. Ideal for systematic processes and structured operations.
MCP Packages
Bundle multiple prompts and SOPs into packages. Deploy across any MCP-compatible AI platform.
Creating Content
Step-by-step guide to create prompts and workflows
MCP Server Installation
Install and configure the My Prompt MCP server using npx
Use npx to run the MCP server directly without installation:
npx my-prompt-mcp --token YOUR_PACKAGE_TOKEN
Note
Replace YOUR_PACKAGE_TOKEN with your actual package token from step 1.
Add the MCP server to your preferred AI development tool:
Claude Code
{ "mcpServers": { "my-prompt-mcp": { "command": "npx", "args": [ "my-prompt-mcp", "--token", "your_package_token_here" ] } } }
Cursor
{ "mcpServers": { "my-prompt-mcp": { "command": "npx", "args": [ "my-prompt-mcp", "--token", "your_package_token_here" ], "alwaysAllow": false } } }
Windsurf
{ "mcpServers": { "my-prompt-mcp": { "command": "npx", "args": [ "my-prompt-mcp", "--token", "your_package_token_here" ] } } }
Cline
{ "mcpServers": { "my-prompt-mcp": { "command": "npx", "args": [ "my-prompt-mcp", "--token", "your_package_token_here" ], "disabled": false } } }
Kiro
{ "mcpServers": { "my-prompt-mcp": { "command": "npx", "args": [ "my-prompt-mcp", "--token", "your_package_token_here" ], "autoApprove": ["list_prompts", "execute_prompt"] } } }
Configuration Tips
- • Replace
your_package_token_here
with your actual package token - • Some tools support additional options like
alwaysAllow
orautoApprove
- • Configuration files are typically in your project root or user directory
After configuration, restart your AI development tool and verify the installation:
- 1.Restart your AI development tool (Claude Code, Cursor, Windsurf, Cline, or Kiro)
- 2.Start a new conversation or session
- 3.Your custom prompts and SOPs should be available as MCP tools
- 4.Test by asking the AI to list available tools or use one of your custom prompts
Troubleshooting
- • Ensure your package token is correct and active
- • Check that npx and Node.js are properly installed
- • Verify the configuration file syntax is valid JSON
- • Some tools may require additional permissions or setup steps