Prophet MCP Server

Prophet MCP Server

An MCP server powered by Meta's Prophet that enables LLMs to perform time-series forecasting, trend analysis, and predictive modeling on historical data. It provides LLM-friendly statistical summaries, automated business-rule validation, and ready-to-render Chart.js visualizations.

Category
Visit Server

README

Prophet MCP Server

An open-source Model Context Protocol (MCP) server engineered for Time-Series Forecasting.

Powered by Meta's Prophet, this server enables LLMs to generate accurate forecasts, trend analyses, and confidence intervals from historical data โ€” turning raw numbers into actionable insights within AI workflows.

Note: This project is a specialized fork of the sendgrid-mcp server, re-engineered to provide robust forecasting capabilities via the MCP protocol.


๐Ÿš€ Key Capabilities

1. Predictive Modeling

Leverages Meta's Prophet to predict future trends based on historical data. Handles seasonality, outliers, and trend changes automatically.

2. LLM-Friendly Output

Returns data in a format optimized for Large Language Models:

  • Plain-English Summaries: Instant context on trends (e.g., "Trending UPWARD by +51.7%").
  • Statistical Breakdowns: Historical vs. Forecasted means, min/max, standard deviations.
  • Chart.js Config: Ready-to-render visualization config for web deployment.

3. Bounds Validation

Optional upper/lower limits to flag out-of-bounds forecasts โ€” turning predictions into decision-support with business-rule enforcement.

4. Interactive Visualization

Includes Chart.js configuration in every response with:

  • Red dots for actual historical data
  • Dashed blue line for forecast predictions
  • Shaded confidence interval band
  • Red/orange dashed limit lines (when bounds are set)

๐Ÿ“– How It Works

โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚  1. LLM sends your historical data (dates + values)        โ”‚
โ”‚  2. Prophet model learns the pattern                        โ”‚
โ”‚  3. Server generates forecast for N future periods          โ”‚
โ”‚  4. Response includes:                                      โ”‚
โ”‚     โ”œโ”€โ”€ Human-readable summary with trend analysis          โ”‚
โ”‚     โ”œโ”€โ”€ Forecast data table (with optional bounds status)   โ”‚
โ”‚     โ””โ”€โ”€ Chart.js config for instant visualization           โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

๐Ÿ“Š Real-World Example

Let's say you tracked daily website conversions over 10 days and want to forecast the next 5 days โ€” with a safety limit of max 22 conversions (your team can't handle more).

Input

{
  "ds": ["2025-01-01", "2025-01-02", "2025-01-03", "2025-01-04", "2025-01-05",
         "2025-01-06", "2025-01-07", "2025-01-08", "2025-01-09", "2025-01-10"],
  "y": [10, 11, 12, 13, 14, 15, 16, 17, 18, 19],
  "periods": 5,
  "upper_limit": 22
}

Output

### Prophet Forecast Data ###

Summary of forecast metrics:
  - Historical Period: 2025-01-01 to 2025-01-10
  - Historical Data Points: 10
  - Historical Mean: 14.50
  - Forecast Periods: 5
  - Trend Direction: UPWARD (+51.7% vs historical mean)

Bounds Validation:
  - Upper Limit: 22
  - โš ๏ธ 2 date(s) OUT OF BOUNDS:
    2025-01-14: yhat=23.00 > upper_limit=22
    2025-01-15: yhat=24.00 > upper_limit=22

Key Takeaway: The model predicts the values will trend upward over the next
5 periods, with predicted values ranging from 20.00 to 24.00.

Date       | yhat  | yhat_lower | yhat_upper | Status
----------------------------------------------------
2025-01-01 | 10.00 | 10.00      | 10.00      | โœ… OK
...
2025-01-14 | 23.00 | 23.00      | 23.00      | โš ๏ธ EXCEEDS UPPER
2025-01-15 | 24.00 | 24.00      | 24.00      | โš ๏ธ EXCEEDS UPPER

chartjs = { ... }

No data-science expertise required. The output tells you the trend direction, flags risky dates, and provides visualization config โ€” all in plain text.


๐Ÿ› ๏ธ Tool: forecast_time_series

Description

Ingests time-series data and returns a future forecast with a detailed text summary, bounds validation, and Chart.js visualization config.

Input Parameters

Parameter Type Required Default Description
ds array[string] โœ… Yes โ€” List of dates in ISO format (YYYY-MM-DD)
y array[number] โœ… Yes โ€” List of numeric values aligned with ds
periods integer No 10 Number of future periods to forecast
lower_limit number No โ€” Flag forecast values below this threshold
upper_limit number No โ€” Flag forecast values above this threshold

Output Columns

Column Meaning
ds Date for the observed or predicted value
yhat Predicted value (model's best estimate)
yhat_lower Lower bound of confidence interval (worst-case)
yhat_upper Upper bound of confidence interval (best-case)
status โœ… OK, โš ๏ธ EXCEEDS UPPER, or โš ๏ธ BELOW LOWER (only when limits are set)

Understanding the Two Types of Bounds

yhat_lower / yhat_upper lower_limit / upper_limit
Set by Prophet model (automatic) You (manual)
Purpose Statistical confidence range Business rule enforcement
Answers "How sure is the model?" "Is the forecast safe for my business?"
Example "Revenue will be 800โ€“1200" "Our warehouse can't handle > 1000 orders"

๐Ÿ“‚ Project Structure

Prophet_mcp/
โ”œโ”€โ”€ app.py                  # Flask server โ€” MCP endpoint, auth, JSON-RPC routing
โ”œโ”€โ”€ mcp_helper.py           # Core engine โ€” Prophet forecasting, summary, Chart.js config
โ”œโ”€โ”€ requirements.txt        # Python dependencies
โ”œโ”€โ”€ README.md               # This file
โ”œโ”€โ”€ .gitignore              # Git exclusions
โ””โ”€โ”€ examples/               # Local testing utilities (not required for deployment)
    โ”œโ”€โ”€ plot_forecast.py    # Script to call API and generate a local HTML chart
    โ””โ”€โ”€ forecast_chart.html # Auto-generated preview (gitignored)

๐Ÿ“ฆ Installation & Setup

Prerequisites

  • Anaconda or Miniconda (recommended for Prophet dependencies)
  • Python 3.11+

1. Environment Setup

# Create environment
conda create -n prophet-mcp python=3.11
conda activate prophet-mcp

# Install dependencies
pip install -r requirements.txt

Windows Users: Prophet requires CmdStan. If you encounter issues, refer to the Prophet Installation Guide or install via conda: conda install -c conda-forge prophet.

2. Configuration

The server uses Bearer Token authentication. Set the MCP_TOKEN environment variable, or it defaults to the value in app.py:

# Set your token (recommended for production)
export MCP_TOKEN="your-secure-token-here"

๐Ÿƒโ€โ™‚๏ธ Running the Server

python app.py
  • Server URL: http://localhost:3000
  • MCP Endpoint: POST http://localhost:3000/mcp

Authentication

All requests must include the header:

Authorization: Bearer <your-token>

Example API Call (cURL)

curl -X POST http://localhost:3000/mcp \
  -H "Content-Type: application/json" \
  -H "Authorization: `MCP_TOKEN` \
  -d '{
    "jsonrpc": "2.0",
    "method": "tools/call",
    "params": {
      "name": "forecast_time_series",
      "arguments": {
        "ds": ["2025-01-01","2025-01-02","2025-01-03","2025-01-04","2025-01-05",
               "2025-01-06","2025-01-07","2025-01-08","2025-01-09","2025-01-10"],
        "y": [10, 11, 12, 13, 14, 15, 16, 17, 18, 19],
        "periods": 5,
        "upper_limit": 22
      }
    },
    "id": 1
  }'

๐Ÿงช Testing & Visualization

Local Testing Script

python examples/plot_forecast.py

This script will:

  1. Call your MCP server's API
  2. Extract the Chart.js config from the response
  3. Generate forecast_chart.html with an interactive chart
  4. Open it in your default browser

The generated chart features a dark glassmorphism theme with:

  • ๐Ÿ”ด Red dots โ€” Historical actuals
  • ๐Ÿ”ต Dashed blue line โ€” Forecast predictions
  • ๐ŸŸฆ Shaded blue band โ€” Confidence interval
  • ๐Ÿ”ด Red dashed line โ€” Upper limit (if set)
  • ๐ŸŸ  Orange dashed line โ€” Lower limit (if set)

โ˜๏ธ Cloud Deployment

For deploying to Google Cloud (or any cloud provider), you only need:

app.py
mcp_helper.py
requirements.txt

The examples/ folder is for local testing only and is not required in production.


๐Ÿ” Security

  • Bearer Token authentication on all endpoints
  • Token configurable via MCP_TOKEN environment variable
  • JSON-RPC error handling with proper error codes
  • Input validation on all tool parameters

๐Ÿ“„ Dependencies

Package Purpose
flask Web server framework
pandas Data manipulation
prophet Time-series forecasting engine
requests HTTP client (examples only)

๐Ÿ“„ License

MIT License


๐Ÿ‘ฅ Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Author: Pradeep Chandra Kalahasthi
Original Base: sendgrid-mcp

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured