Fire in da houseTop Tip:Paying $100+ per month for Perplexity, MidJourney, Runway, ChatGPT and other tools is crazy - get all your AI tools in one site starting at $15 per month with Galaxy AI Fire in da houseCheck it out free

mcp-prompt-templates

MCP.Pizza Chef: mikeskarl

The mcp-prompt-templates server is an MCP server designed to manage and serve standardized prompt templates and chains for content analysis. It supports various analysis types including detailed meeting minutes with action items, executive-style meeting summaries, and converting webinars into blog posts. The server organizes templates in a structured format, allowing seamless integration with MCP clients to provide consistent, reusable prompt templates that enhance model-driven content generation workflows. Installation is straightforward with Python dependencies, and the server exposes these templates via the MCP protocol for easy consumption by LLM-powered applications.

Use This MCP server To

Serve meeting analysis prompt templates for detailed minutes Provide executive-style meeting summary templates Convert webinar transcripts into blog post templates Standardize prompt chains for content analysis workflows Integrate reusable prompt templates into MCP clients

README

MCP Analysis Templates

An MCP server for managing and serving analysis templates and prompt chains.

Overview

This repository contains a Model Context Protocol (MCP) server implementation that provides standardized templates for various types of content analysis:

  • Meeting Analysis (detailed meeting minutes and action items)
  • Meeting Summary (executive-style brief summary)
  • Webinar to Blog Post conversion

Structure

mcp-analysis-templates/
├── README.md
├── requirements.txt
├── server.py
├── config.yaml
├── templates/
│   ├── meeting_analysis/
│   │   ├── template.md
│   │   └── config.yaml
│   ├── meeting_summary/
│   │   ├── template.md
│   │   └── config.yaml
│   └── webinar_blog/
       ├── template.md
       └── config.yaml
└── docs/
    ├── setup.md
    └── usage.md

Setup

  1. Install dependencies:
pip install -r requirements.txt
  1. Run the server:
python server.py

Usage

The server provides templates through the MCP protocol. Connect to it using any MCP client to access the templates.

See the docs directory for detailed setup and usage instructions.

mcp-prompt-templates FAQ

How do I install the mcp-prompt-templates server?
Install dependencies using 'pip install -r requirements.txt' and run the server with 'python server.py'.
Can I customize the prompt templates?
Yes, templates are stored in markdown and YAML config files allowing easy customization.
How does the server expose templates to clients?
It serves templates via the MCP protocol, enabling clients to fetch and use them dynamically.
Is the server compatible with multiple LLM providers?
Yes, it works with any MCP-compatible client, supporting models like OpenAI, Claude, and Gemini.
What types of analysis templates are included?
Meeting analysis, meeting summaries, and webinar-to-blog post conversion templates are provided.
How are templates organized in the server?
Templates are organized in folders by analysis type, each with a markdown template and config YAML.
Does the server support prompt chaining?
Yes, it supports serving prompt chains to enable complex multi-step analysis workflows.
Is there documentation for setup and usage?
Yes, the repository includes docs/setup.md and docs/usage.md for detailed instructions.