Prompt Title
Your comprehensive library of production-ready AI prompts, standards, and workflows
The Alterspective Prompt Viewer is a curated collection of 169+ professional prompts designed for AI-assisted software development. This repository provides:
Navigate folders and prompts using the sidebar tree structure
Use the search bar to find prompts by name or keywords
Click any prompt, then use the copy button to add to your workflow
Use "Copy Link" to share direct URLs to specific prompts
Give your AI assistant programmatic access to this prompt library using the Model Context Protocol (MCP).
⚡ Quick Setup (Recommended)
Connect directly to our hosted MCP server - no installation needed!
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json{
"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
For offline access or private deployments, run the MCP server locally:
git clone https://github.com/Alterspective-Engine/GPTPrompts.git
cd GPTPrompts/mcp-server
npm install
npm run build
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"]
}
}
}
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
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!"