📚 Complete User Guide

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
Understand the core features and capabilities
Creating Content
Learn to create prompts and SOP workflows
MCP Installation
Install and configure the MCP server

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.

Email GeneratorBasic Prompt
Code Review SOPSOP Workflow
Development ToolsMCP Package

Creating Content

Step-by-step guide to create prompts and workflows

Creating Basic Prompts
1

Define Parameters

Add input parameters like {topic}, {tone}, {length}

2

Write Prompt

Create clear, specific instructions with parameter placeholders

3

Test & Publish

Test with sample inputs and publish to your package

Creating SOP Workflows
1

Design Workflow

Plan your multi-step process with clear objectives

2

Add Steps

Create sequential steps with conditions and branches

3

Configure Logic

Set up conditional flows and decision points

MCP Server Installation

Install and configure the My Prompt MCP server using npx

1
Get Your Package Token

First, you need to get your package token from the My Prompt MCP platform:

  1. 1.Sign in to your My Prompt MCP account
  2. 2.Go to Package Center and create or select a package
  3. 3.Copy the package token from the settings
2
Install with npx (Recommended)

Use npx to run the MCP server directly without installation:

Terminal
npx my-prompt-mcp --token YOUR_PACKAGE_TOKEN
!

Note

Replace YOUR_PACKAGE_TOKEN with your actual package token from step 1.

3
Configure AI Development Tools

Add the MCP server to your preferred AI development tool:

Claude Code

.mcp.json
{
  "mcpServers": {
    "my-prompt-mcp": {
      "command": "npx",
      "args": [
        "my-prompt-mcp",
        "--token",
        "your_package_token_here"
      ]
    }
  }
}

Cursor

.cursor/mcp.json
{
  "mcpServers": {
    "my-prompt-mcp": {
      "command": "npx",
      "args": [
        "my-prompt-mcp",
        "--token",
        "your_package_token_here"
      ],
      "alwaysAllow": false
    }
  }
}

Windsurf

mcp_config.json
{
  "mcpServers": {
    "my-prompt-mcp": {
      "command": "npx",
      "args": [
        "my-prompt-mcp",
        "--token",
        "your_package_token_here"
      ]
    }
  }
}

Cline

cline_mcp_settings.json
{
  "mcpServers": {
    "my-prompt-mcp": {
      "command": "npx",
      "args": [
        "my-prompt-mcp",
        "--token",
        "your_package_token_here"
      ],
      "disabled": false
    }
  }
}

Kiro

mcp.json
{
  "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 or autoApprove
  • • Configuration files are typically in your project root or user directory
Verify Installation

After configuration, restart your AI development tool and verify the installation:

  1. 1.Restart your AI development tool (Claude Code, Cursor, Windsurf, Cline, or Kiro)
  2. 2.Start a new conversation or session
  3. 3.Your custom prompts and SOPs should be available as MCP tools
  4. 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

Additional Resources

Get more help and connect with the community

Documentation
Comprehensive guides and API references
Community
Connect with other users and share experiences
Support
Get help with technical issues and questions

Ready to Get Started?

Create your first prompt or SOP workflow today