MCP Hub
Back to servers

PitchDeck MCP Server

An MCP server that generates comprehensive AI-powered investor pitch decks for startups and businesses. It produces structured content for slides covering problem statements, market opportunities, and business models based on specific company inputs.

Updated
Feb 8, 2026

PitchDeck MCP Server

An MCP (Model Context Protocol) server that generates AI-powered pitch decks for startups and businesses.

Features

  • generate_pitch_deck - Creates a complete investor pitch deck with:
    • Title slide
    • Problem statement
    • Solution overview
    • Market opportunity
    • Business model
    • Competitive landscape (optional)
    • Traction & milestones
    • Team overview
    • Financial projections
    • Funding request (optional)
    • Closing slide

Installation

npm install
npm run build

Usage

As an MCP Server

Add to your MCP client configuration (e.g., Claude Desktop):

{
  "mcpServers": {
    "pitchdeck": {
      "command": "node",
      "args": ["/path/to/pitchdeck-mcp/dist/index.js"]
    }
  }
}

Tool: generate_pitch_deck

Generate a complete pitch deck for your startup.

Required Inputs:

ParameterTypeDescription
company_namestringThe name of the company or startup
problemstringThe problem or pain point the company solves
solutionstringThe solution or product the company offers
market_sizestringTarget market and size (e.g., "$10B healthcare market")
business_modelstringHow the company makes money

Optional Inputs:

ParameterTypeDescription
industrystringIndustry vertical (auto-detected if not provided)
competitionstringKey competitors and landscape
funding_amountstringAmount being raised (e.g., "$2M seed round")
use_of_fundsstringAllocation of funding

Example:

{
  "company_name": "TechFlow",
  "problem": "Small businesses waste 20+ hours per week on manual data entry",
  "solution": "AI-powered automation platform with 99.9% accuracy",
  "market_size": "$200B SMB administrative software market",
  "business_model": "SaaS subscription: $99/month starter, $299/month pro",
  "competition": "Legacy players like SAP are slow and expensive",
  "funding_amount": "$3M Seed Round"
}

Output:

Returns a JSON object with:

  • companyName: Company name
  • slides: Array of slide objects with title, content, and type
  • generatedAt: ISO timestamp

Development

# Install dependencies
npm install

# Run in development mode
npm run dev

# Run tests
npm test

# Build for production
npm run build

Testing

npm test

Tests cover:

  • Required field generation
  • Optional field handling (competition, funding)
  • Slide content validation
  • Edge cases (company names with spaces)

License

MIT

Reviews

No reviews yet

Sign in to write a review