Welcome to Alterspective Prompt Viewer

Your comprehensive library of production-ready AI prompts, standards, and workflows

What is This?

The Alterspective Prompt Viewer is a curated collection of 169+ professional prompts designed for AI-assisted software development. This repository provides:

  • Three-Layer Architecture - Core standards, domain prompts, and full SDLC workflows
  • Production-Ready Templates - Planning, implementation, testing, security, and deployment
  • MCP Integration - Direct programmatic access for AI assistants via Model Context Protocol
  • Web Interface - Browse, search, and copy prompts instantly

🌐 How to Use (Web Interface)

📁

Browse

Navigate folders and prompts using the sidebar tree structure

🔍

Search

Use the search bar to find prompts by name or keywords

📋

Copy

Click any prompt, then use the copy button to add to your workflow

🔗

Share

Use "Copy Link" to share direct URLs to specific prompts

🤖 Enable AI Access via MCP

Give your AI assistant programmatic access to this prompt library using the Model Context Protocol (MCP).

Benefits of MCP Integration:

  • ✅ AI can fetch prompts on-demand without manual copying
  • ✅ Progressive disclosure saves tokens (98.7% reduction)
  • ✅ Always uses latest prompt versions
  • ✅ Works with Claude Desktop, Cline, and MCP-compatible tools

Setup Instructions:

⚡ Quick Setup (Recommended)

Connect directly to our hosted MCP server - no installation needed!

  1. Locate your Claude config file:
    • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
    • Windows: %APPDATA%\Claude\claude_desktop_config.json
  2. Add this configuration:
    {
      "mcpServers": {
        "alterspective-prompts": {
          "command": "npx",
          "args": [
            "-y",
            "mcp-client-sse",
            "https://prompts-mcp.alterspective.io/sse"
          ]
        }
      }
    }

    This connects to the hosted MCP server at https://prompts-mcp.alterspective.io

  3. Restart Claude Desktop - The MCP connection will auto-start
  4. Verify: Look for the 🔌 icon in Claude Desktop showing "alterspective-prompts" connected
Alternative: Run MCP Server Locally (Offline Access)

For offline access or private deployments, run the MCP server locally:

  1. Clone and build:
    git clone https://github.com/Alterspective-Engine/GPTPrompts.git
    cd GPTPrompts/mcp-server
    npm install
    npm run build
  2. Update your Claude config:

    Windows:

    {
      "mcpServers": {
        "alterspective-prompts": {
          "command": "node",
          "args": ["C:\\GitHub\\GPTPrompts\\mcp-server\\dist\\index.js"]
        }
      }
    }

    macOS/Linux:

    {
      "mcpServers": {
        "alterspective-prompts": {
          "command": "node",
          "args": ["/path/to/GPTPrompts/mcp-server/dist/index.js"]
        }
      }
    }

Available MCP Tools:

get_prompt

Fetch a specific prompt by name

list_prompts

List available prompts with filtering

get_standard

Get standard documents

list_standards

List all standards

Example Usage:

User: "Load the planning prompt"
Claude: [Uses get_prompt tool to fetch "prompt-plan.txt"]
Claude: "I've loaded the planning prompt. Ready to help you plan your task!"

📚 Prompt Categories

🔗 Additional Resources

Raw Content