Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"prd-creator": {
"args": [
"-y",
"prd-creator-mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A specialized Model Context Protocol (MCP) server dedicated to creating Product Requirements Documents. This MCP server enables AI systems connected to MCP clients to generate detailed, well-structured product requirement documents through a standardized protocol interface.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'prd-creator-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked prd-creator-mcp against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in productivity / writing
Persistent memory using a knowledge graph
Dynamic problem-solving through sequential thought chains
mini cli search engine for your docs, knowledge bases, meeting notes, whatever. Tracking current sota approaches while being all local
A markdown editor — and the bridge to your LLM. Local-first, MIT, ~15 MB. Bundled MCP server lets Claude Code / Codex / Cursor drive your vault directly. 14 AI providers BYOK.
MCP Security Weekly
Get CVE alerts and security updates for PRD MCP Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A specialized Model Context Protocol (MCP) server dedicated to creating Product Requirements Documents. This MCP server enables AI systems connected to MCP clients to generate detailed, well-structured product requirement documents through a standardized protocol interface.
Via NPX (recommended):
npx -y prd-creator-mcp
Via Docker:
docker pull saml1211/prd-creator-mcp
docker run -i --rm saml1211/prd-creator-mcp
Configure Providers:
.env.example to .env and set your API keys and preferred models.update_provider_config MCP tool.Get Help:
npx prd-creator-mcp --help
git clone https://github.com/Saml1211/prd-mcp-server.git
cd prd-mcp-server
npm install
npm run build
npm start
npm run dev
The PRD Creator MCP Server provides the following tools:
generate_prdGenerate a complete PRD document using AI or template-based generation.
Parameters:
productName: The name of the productproductDescription: Description of the producttargetAudience: Description of the target audiencecoreFeatures: Array of core feature descriptionsconstraints (optional): Array of constraints or limitationstemplateName (optional): Template name to use (defaults to "standard")providerId (optional): Specific AI provider to use (openai, anthropic, gemini, local, template)additionalContext (optional): Additional context or instructions for the AI providerproviderOptions (optional): Provider-specific options like temperature, maxTokens, etc.Example:
{
"productName": "TaskMaster Pro",
"productDescription": "A task management application that helps users organize and prioritize their work efficiently.",
"targetAudience": "Busy professionals and teams who need to manage multiple projects and deadlines.",
"coreFeatures": [
"Task creation and mana
... [View full README on GitHub](https://github.com/Saml1211/PRD-MCP-Server#readme)