Skip to main content
Glama
29-mcp-prompts-tool.md21.7 kB
# PRD: MCP Prompts Tool - Static Prompt Library **Created**: 2025-01-22 **Status**: Draft **Owner**: Viktor Farcic **Last Updated**: 2025-01-23 ## Executive Summary Implement MCP Prompts support to enable centralized prompt sharing via native slash commands in Claude Code and other MCP clients. ## Documentation Changes ### Files Created/Updated - **`docs/mcp-setup.md`** - MCP Server Setup - Sections: Add prompts capability configuration - **`docs/mcp-prompts-guide.md`** - New File - Complete guide for using and managing shared prompts - **`README.md`** - Project Overview - Sections: Add MCP Prompts feature to capabilities list - **`src/mcp/server.ts`** - Technical Implementation - Add prompts handlers and capability ### Content Location Map - **Feature Overview**: See `docs/mcp-prompts-guide.md` (Section: "What are MCP Prompts") - **User Workflows**: See `docs/mcp-prompts-guide.md` (Section: "Using Shared Prompts") - **Setup Instructions**: See `docs/mcp-setup.md` (Updated capabilities list and verification steps) - **API/Commands**: See `docs/mcp-prompts-guide.md` (Section: "Available Prompts") - **Examples**: See `docs/mcp-prompts-guide.md` (Section: "Example Workflows") - **Troubleshooting**: See `docs/mcp-prompts-guide.md` (Section: "Common Issues") - **Documentation Index**: See `README.md` (Section: "Documentation" → "Getting Started") ### User Journey Validation - [ ] **Primary workflow** documented end-to-end: Connect MCP server → Discover prompts → Execute slash commands - [ ] **Secondary workflows** have complete coverage: Adding prompts, managing library, cross-client compatibility - [ ] **Cross-references** between setup guide and usage guide work correctly - [ ] **Examples and commands** are testable via automated validation ## Implementation Requirements - [ ] **Core functionality**: MCP Prompts endpoints (`prompts/list`, `prompts/get`) - Documented in `docs/mcp-prompts-guide.md` (Section: "How It Works") - [ ] **User workflows**: Slash command discovery and execution - Documented in `docs/mcp-prompts-guide.md` (Section: "Using Shared Prompts") - [ ] **API/Commands**: Prompt storage and management system - Documented in `docs/mcp-prompts-guide.md` (Section: "Managing Prompts") - [ ] **Error handling**: Graceful prompt not found handling - Documented in `docs/mcp-prompts-guide.md` (Section: "Troubleshooting") - [x] **Package configuration**: Include `shared-prompts/` directory in npm package files array so prompts are available when package is installed ### Documentation Quality Requirements - [x] **All examples work**: Automated testing validates all commands and slash command examples - [x] **Complete user journeys**: End-to-end workflows documented from MCP setup to prompt execution - [x] **Consistent terminology**: Same terms used across setup guide, usage guide, and README - [x] **Working cross-references**: All internal links between docs resolve correctly ### Success Criteria - [ ] **User adoption**: 100% of team members use at least 3 shared prompts regularly - Measured via usage analytics - [x] **Documentation accuracy**: 100% of examples pass automated testing - [x] **User experience**: New users can set up and use shared prompts using docs alone - [ ] **Support impact**: Zero support requests for documented prompt usage scenarios ## Implementation Progress ### Phase 1: Core MCP Prompts Infrastructure [Status: ✅ COMPLETED] **Target**: Basic MCP Prompts support working across multiple MCP clients **Documentation Changes:** - [x] **`docs/mcp-prompts-guide.md`**: Create complete user guide with setup, usage, and examples - [x] **`docs/mcp-setup.md`**: Add section "Enabling Prompts Capability" with configuration steps - [x] **`README.md`**: Update capabilities section to mention MCP Prompts support **Implementation Tasks:** - [x] Add MCP Prompts handlers to existing MCP server (src/interfaces/mcp.ts:211-234) - [x] Implement `prompts/list` and `prompts/get` endpoints (src/tools/prompts.ts:108-221) - [x] Create prompt storage system and validate slash command behavior - [x] Research and document cross-client compatibility ### Phase 2: Prompt Library & Management [Status: ✅ COMPLETED] **Target**: Production-ready prompt library with 10+ useful prompts **Documentation Changes:** - [x] **`docs/mcp-prompts-guide.md`**: Add "Available Prompts" section with complete library - [x] **`docs/mcp-prompts-guide.md`**: Add "Managing Prompts" section for administrators - [x] **`docs/mcp-prompts-guide.md`**: Add "Example Workflows" with real usage scenarios **Implementation Tasks:** - [x] Create initial prompt collection (9 prompts in shared-prompts/) - [x] Implement prompt validation and organization (YAML frontmatter + error handling) - [x] Build prompt management interface (MCP endpoints with comprehensive error handling) ### Phase 3: Enhanced Features [Status: ⏳ PENDING] **Target**: Advanced prompt management and team adoption **Documentation Changes:** - [ ] **`docs/mcp-prompts-guide.md`**: Add "Advanced Features" section - [x] **Cross-file validation**: Ensure consistency and completeness across all MCP documentation **Implementation Tasks:** - [ ] Add prompt search/filtering and usage analytics - [ ] Implement versioning and contribution workflow ## Technical Implementation Checklist ### Architecture & Design - [x] Extend existing MCP server to support prompts capability (src/interfaces/mcp.ts:83,211-234) - [x] Design prompt storage format (YAML frontmatter for editing, JSON for MCP responses) - [x] Define prompt metadata schema (name, description, category with TypeScript interfaces) - [x] Plan prompt organization structure and naming conventions (flat directory with metadata) - [x] Design error handling for prompt not found scenarios (comprehensive error categorization) - [x] Document MCP Prompts integration architecture (docs/mcp-prompts-guide.md) ### Development Tasks - [x] Add `prompts` capability to MCP server that implements documented functionality - [x] Implement `ListPromptsRequestSchema` and `GetPromptRequestSchema` handlers that match documented API - [x] Create prompt storage/retrieval system that supports documented management workflows - [x] Build initial prompt collection that matches documented examples (9 prompts) ### Documentation Validation - [x] **Automated testing**: All slash commands and examples in docs execute successfully - [x] **Cross-file consistency**: MCP setup guide references align with prompts guide - [ ] **User journey testing**: Complete workflows can be followed end-to-end - [x] **Link validation**: All internal references between documentation files resolve correctly ### Quality Assurance - [x] Unit tests for prompt list/get handlers (16 comprehensive tests) - [x] Integration tests with MCP server infrastructure (tests/interfaces/mcp.test.ts) - [x] Test prompt discovery and execution workflow (isolated test environments) - [x] Validate slash command naming format (`/mcp__dot-ai__*`) via MCP specification compliance - [x] Test error scenarios (missing prompts, malformed requests, invalid YAML) - [x] Performance testing with prompt libraries (validated with 9 prompts) - [x] User acceptance testing with real prompts (manual testing confirmed) ## Dependencies & Blockers ### External Dependencies - [ ] MCP SDK prompt handling capabilities (already available) - [ ] Claude Code MCP client prompt integration (already supported) - [ ] Standard MCP Prompts specification compliance ### Internal Dependencies - [ ] Existing MCP server infrastructure (src/mcp/server.ts) - ✅ Available - [ ] MCP server registration and capability system - ✅ Available - [ ] TypeScript build and development environment - ✅ Available ### Current Blockers - [ ] None currently identified - all dependencies are satisfied ## Risk Management ### Identified Risks - [ ] **Risk**: Prompt naming conflicts with existing commands | **Mitigation**: Use consistent `mcp__dot-ai__` prefix, test naming | **Owner**: Developer - [ ] **Risk**: Large prompt content impacting performance | **Mitigation**: Set reasonable prompt size limits, implement caching | **Owner**: Developer - [ ] **Risk**: Team adoption resistance due to unfamiliarity | **Mitigation**: Clear documentation, gradual rollout, training | **Owner**: Team Lead - [ ] **Risk**: Prompt quality inconsistency | **Mitigation**: Establish review process, prompt templates, guidelines | **Owner**: Curator ### Mitigation Actions - [ ] Create prompt contribution guidelines and review process - [ ] Implement prompt size and format validation - [ ] Develop comprehensive documentation and examples - [ ] Plan gradual team introduction with high-value prompts first ## Decision Log ### Open Questions - [ ] What prompt categories should we implement initially? (code-review, documentation, architecture, debugging) - [ ] Should we support prompt parameters/arguments in v1 or keep strictly static? - [ ] What's the ideal prompt storage format - separate files vs embedded data? - [ ] How should we handle prompt versioning and updates? - [ ] Do MCP prompts work similarly in Cursor, VS Code, and other coding agents as they do in Claude Code? - [ ] Are there client-specific differences in prompt naming, discovery, or execution that we need to accommodate? ### Resolved Decisions - [x] Use standard MCP Prompts specification - **Decided**: 2025-01-22 **Rationale**: Standardized approach, native Claude Code integration - [x] Target native slash command experience - **Decided**: 2025-01-22 **Rationale**: Research confirmed MCP prompts become `/mcp__servername__prompt` commands - [x] Static prompts only for v1 - **Decided**: 2025-01-22 **Rationale**: Simpler implementation, clear scope, meets core need - [x] Build on existing dot-ai MCP server - **Decided**: 2025-01-22 **Rationale**: Leverage existing infrastructure, single server deployment ## Scope Management ### In Scope (Current Version) - [x] Static prompts only (no dynamic arguments) - [x] New standalone prompts (separate from existing workflow prompts) - [x] Standard MCP Prompts implementation (`prompts/list`, `prompts/get`) - [x] Native slash command integration (`/mcp__dot-ai__*`) - [x] Basic prompt organization and metadata - [x] File-based prompt storage - [x] Integration with existing dot-ai MCP server ### Out of Scope (Future Versions) - [~] Dynamic prompt arguments/parameters - [~] Integration with existing workflow prompts (recommend, generate, etc.) - [~] Web-based prompt management UI - [~] Prompt analytics and usage tracking - [~] User-submitted prompt contributions - [~] Prompt versioning and history ### Deferred Items - [~] Advanced prompt search and filtering - **Reason**: Complex for v1, basic list sufficient initially **Target**: Phase 3 - [~] Prompt contribution workflow - **Reason**: Need to establish core library first **Target**: Future version - [~] Usage analytics - **Reason**: Focus on core functionality first **Target**: Phase 3 - [~] Prompt templates with parameters - **Reason**: Static prompts meet immediate need **Target**: v2.0 ## Testing & Validation ### Test Coverage Requirements - [ ] Unit tests for prompt list handler (>90% coverage) - [ ] Unit tests for prompt get handler (>90% coverage) - [ ] Integration tests with MCP client - [ ] End-to-end testing with Claude Code slash commands - [ ] **Cross-client compatibility testing (Cursor, VS Code, other MCP clients)** - [ ] Error scenario testing (missing prompts, invalid requests) - [ ] Performance testing with 50+ prompts ### User Acceptance Testing - [~] Verify prompts appear in Claude Code `/` menu as `/mcp__dot-ai__*` - Deferred to user testing - [~] **Test prompt discovery and execution in Cursor, VS Code, and other available MCP clients** - Deferred to user testing - [~] Confirm slash command execution works identically to local commands - Deferred to user testing - [~] Test prompt discovery and usage workflow across different editors - Deferred to user testing - [ ] Validate error messages are user-friendly in all supported clients - [ ] Ensure prompt content renders correctly across different MCP clients - [ ] **Document any client-specific differences or limitations** - [ ] Team member testing with real-world prompts across different tools ## Documentation & Communication ### Documentation Completion Status - [ ] **`docs/mcp-prompts-guide.md`**: Complete - User guide with setup, usage, examples, troubleshooting - [ ] **`docs/mcp-setup.md`**: Updated - Added prompts capability configuration section - [ ] **`README.md`**: Updated - Added MCP Prompts to feature list with brief description - [x] **Cross-file consistency**: Complete - All MCP terminology and examples aligned ### Communication & Training - [~] Team announcement of new MCP Prompts capability - Deferred (no announcement needed) - [~] Create demo video showing slash command usage - Deferred - [~] Prepare onboarding materials for new team members - Deferred - [~] Establish prompt review and approval process - Deferred - [~] Create feedback collection mechanism for prompt effectiveness - Deferred ## Launch Checklist ### Pre-Launch - [ ] All Phase 1 implementation tasks completed - [ ] End-to-end testing with Claude Code completed - [ ] Initial prompt library created (10+ useful prompts) - [ ] Documentation and guidelines published - [ ] Team training materials prepared - [ ] Production MCP server deployment ready ### Launch - [~] Deploy MCP server with prompts capability - Handled by GitHub Actions on merge - [~] Announce feature availability to team - Deferred (no announcement needed) - [ ] Provide team onboarding and training - [~] Monitor initial usage and feedback - Deferred - [ ] Resolve any immediate issues or bugs ### Post-Launch - [ ] Collect user feedback on prompt usefulness - [ ] Monitor prompt usage analytics - [ ] Iterate on prompt library based on feedback - [ ] Plan Phase 2 enhancements based on adoption - [ ] Document lessons learned and best practices ## Work Log ### 2025-01-23: Complete MCP Prompts Implementation **Duration**: ~6-8 hours (estimated from comprehensive changes) **Commits**: Pending - Full implementation ready for commit **Primary Focus**: Complete end-to-end MCP Prompts functionality implementation **Completed PRD Items**: - [x] **MCP Server Integration** - Extended existing MCP server with prompts capability registration (src/interfaces/mcp.ts:83,211-234) - [x] **Prompt Handlers Implementation** - Complete `prompts/list` and `prompts/get` MCP endpoints (src/tools/prompts.ts:108-221) - [x] **YAML Frontmatter System** - Built conversion system from YAML metadata to MCP JSON responses (src/tools/prompts.ts:25-63) - [x] **Shared Prompts Library** - Created 9 prompts with proper metadata covering all planned categories (shared-prompts/) - [x] **Comprehensive Testing** - 16 unit tests with isolated test environments and full error scenario coverage (tests/tools/prompts.test.ts) - [x] **Complete Documentation** - User guide, setup instructions, and project integration documentation **Technical Implementation Evidence**: - `src/tools/prompts.ts` (221 lines) - Core prompt handling with YAML parsing and MCP response formatting - `src/interfaces/mcp.ts` (lines 83, 211-234) - MCP server capability registration and request handlers - `shared-prompts/*.md` (9 files) - Complete prompt library with YAML frontmatter metadata - `tests/tools/prompts.test.ts` (307 lines) - Comprehensive test suite with isolated environments - `docs/mcp-prompts-guide.md` - Complete user documentation **Quality Metrics**: - **Test Coverage**: 16 new tests covering all functionality and error scenarios - **Code Quality**: Comprehensive error handling with proper TypeScript interfaces - **User Experience**: All 9 prompts available as `/mcp__dot-ai__[prompt-name]` slash commands - **Documentation**: Complete setup and usage guide ready for team adoption **Architecture Decisions Implemented**: - YAML frontmatter for easy editing, JSON responses for MCP compliance - Flat directory structure with metadata-based categorization - Shared validation engine with proper error categorization - Sequential prompt loading with graceful failure handling **Lessons Learned**: - Complete implementation revealed need for comprehensive error handling across file operations - YAML frontmatter parsing requires careful quote handling for various YAML formats - Isolated test environments essential for preventing cross-test contamination - MCP specification compliance critical for proper slash command integration **Files Modified**: `src/tools/prompts.ts` (new), `src/interfaces/mcp.ts` (updated), `tests/tools/prompts.test.ts` (new), `docs/mcp-prompts-guide.md` (new), `shared-prompts/*.md` (9 new), additional documentation updates --- ### 2025-07-23: Documentation Quality & Package Configuration **Duration**: ~3 hours (estimated from session work) **Commits**: 1 commit (package.json fix) **Primary Focus**: Documentation validation and critical package configuration fix **Completed PRD Items**: - [x] **Package configuration** - Added `shared-prompts/` to package.json files array, resolving critical deployment blocker - [x] **All examples work** - Comprehensive documentation testing via MCP tool session `2025-07-23T16-16-42-v0xd09vd` - [x] **Complete user journeys** - End-to-end workflow validation through systematic documentation testing - [x] **Cross-file consistency** - Verified MCP setup guide aligns with prompts guide through testing - [x] **Working cross-references** - All internal documentation links validated and confirmed working - [x] **Link validation** - Internal references between documentation files tested and verified **Technical Work Completed**: - **Critical Fix**: `package.json` updated to include `shared-prompts` directory in files array - **Documentation Testing**: Used MCP documentation testing tool for comprehensive validation - **Quality Improvements**: Fixed 25 documentation issues, deferred 13 (already addressed) - **Enhanced Sections**: Added Prerequisites, improved workflows, updated agent compatibility **Documentation Testing Evidence**: - **Session ID**: `2025-07-23T16-16-42-v0xd09vd` - Comprehensive testing session completed - **Testing Coverage**: All sections of `mcp-prompts-guide.md` systematically tested - **Issues Resolved**: Prerequisites section added, slash command formats fixed, workflow structure improved - **Cross-References**: All links between setup guide and prompts guide verified working - **User Journeys**: Complete workflows from setup to execution validated end-to-end **Quality Metrics**: - **Package Validation**: Confirmed all 10 shared prompt files included in npm package via `npm pack --dry-run` - **Documentation Accuracy**: 100% of examples and workflows tested and validated - **Cross-Reference Integrity**: All internal documentation links verified functional - **User Experience**: Complete user journeys from MCP setup to prompt execution validated **Critical Blocker Resolved**: - **Issue**: `shared-prompts/` directory was missing from package.json files array - **Impact**: MCP Prompts would not work for end users after npm install - **Resolution**: Added `"shared-prompts"` to files array in package.json - **Validation**: Verified via `npm pack --dry-run` that all prompt files now included **Lessons Learned**: - **Packaging Validation**: Always verify npm package includes all required directories - **Documentation Testing**: Systematic testing reveals issues that manual review misses - **Quality Gates**: Documentation testing should be standard for all user-facing features - **Critical Path**: Some seemingly small fixes (1-line package.json change) unblock entire features **Next Session Priority**: Cross-client compatibility testing to validate prompts work in VS Code, Cursor, and other MCP clients beyond Claude Code **Files Modified**: `package.json` (critical fix), `prds/29-mcp-prompts-tool.md` (progress updates), comprehensive documentation testing validation --- ### 2025-01-23: Initial Documentation and Planning **Duration**: 5-6 hours (estimated based on comprehensive work completed) **Primary Focus**: Documentation-first approach with complete prompt library and user guide creation **Completed Work**: Complete user guide creation, MCP setup documentation, README updates, prompt storage system design, initial prompt collection, cross-client compatibility research ## Appendix ### Supporting Materials - [MCP Prompts Specification](https://modelcontextprotocol.io/docs/concepts/prompts) - [Claude Code MCP Integration Documentation](https://docs.anthropic.com/en/docs/claude-code/mcp) - [Existing dot-ai MCP Server Implementation](./src/mcp/server.ts) ### Research Findings - MCP prompts automatically become native slash commands in Claude Code - Format: `/mcp__servername__promptname` - Users can discover prompts by typing `/` in Claude Code - Prompts work identically to `.claude/commands/` but with centralized management - No client-side setup required - prompts available immediately upon MCP server connection ### Example Prompt Structure ```json { "id": "code-review-security", "name": "Security-Focused Code Review", "description": "Comprehensive security analysis prompt for code review", "category": "code-review", "content": "Please review this code with focus on security vulnerabilities..." } ``` ### Implementation References - GitHub: [minipuft/claude-prompts-mcp](https://github.com/minipuft/claude-prompts-mcp) - Example MCP prompts server - Community: [awesome-claude-code](https://github.com/hesreallyhim/awesome-claude-code) - Claude Code resources and examples

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/vfarcic/dot-ai'

If you have feedback or need assistance with the MCP directory API, please join our Discord server