MCP Prompt Server is a Node.js-based server that provides a collection of pre-defined YAML prompts for common software development tasks. It integrates with the Model Context Protocol SDK to expose these prompts as tools, including code review, refactoring, API documentation, test case generation, and project architecture assistance. The server is designed to be easily configurable through a JSON configuration file and can be integrated into existing development workflows, making it particularly valuable for developers looking to streamline repetitive writing and coding tasks through AI assistance.
No reviews yet. Be the first to review!
Sign in to join the conversation
Reloads all preset prompts to refresh the available prompt templates.
Retrieves the names of all available prompts.
Performs a code review based on the provided code snippet and language. Parameters: language (string), code (string)
Generates API documentation from the provided code snippet and language. Parameters: language (string), code (string), format (string)
Refactors the provided code snippet according to best practices. Parameters: language (string), code (string)
Generates test cases for the provided code snippet. Parameters: language (string), code (string)
Analyzes and provides recommendations for the project architecture based on the provided code. Parameters: code (string)