PDF Report Generator MCP
Generates executive summaries, insights, recommendations, and other textual content from data using OpenAI.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@PDF Report Generator MCPGenerate a PDF report with charts from this data: Region,Sales; East,15000; West,7000"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
PDF Report Generator MCP (with real Power BI dashboard)
FastMCP server that turns one plain-text prompt (with embedded CSV data) into: a live Power BI dashboard, chart images, executive summary, insights, recommendations, and a professional PDF report.
1. Install dependencies
python -m venv .venv
.venv\Scripts\Activate.ps1
pip install -r requirements.txtRelated MCP server: powerBI-mcp
2. Configure .env
AZURE_OPENAI_API_KEY=your_key_here
AZURE_OPENAI_ENDPOINT=https://your-resource.openai.azure.com/
AZURE_OPENAI_DEPLOYMENT=gpt-4o-mini
AZURE_OPENAI_API_VERSION=2024-08-01-preview
POWERBI_CLIENT_ID=your_client_id_here
POWERBI_CLIENT_SECRET=your_client_secret_here
POWERBI_TENANT_ID=your_tenant_id_here
POWERBI_WORKSPACE_ID=your_workspace_id_here
LOG_LEVEL=INFO
GENERATED_DIR=generatedGetting the Power BI values
Client ID / Client Secret / Tenant ID: from the Azure AD app registration (Azure Portal -> App registrations). The app needs the Dataset.ReadWrite.All Power BI API permission, with admin consent granted.
Workspace ID: open your workspace at app.powerbi.com, copy the GUID from the URL:
app.powerbi.com/groups/<WORKSPACE_ID>/listThe workspace's tenant must also have "Allow service principals to use Power BI APIs" enabled (Power BI Admin Portal -> Tenant settings), and the app should be added as a member of the target workspace.
3. Test without any MCP client
python test_local.pyThis prints the executive summary, insights, recommendations, chart file paths, the live Power BI dashboard URL, and the PDF path.
4. Run as an MCP server
python server.py5. Test with MCP Inspector (requires Node.js)
npx @modelcontextprotocol/inspector python server.pyExample client prompt
Generate a professional sales report from the following data.
OrderID,Region,Sales,Profit
101,North,12000,3000
102,South,9000,1800
103,East,15000,4500
104,West,7000,1200
Generate:
Bar Chart
Pie Chart
Power BI Dashboard
Professional PDF ReportExpected output (ReportResponse)
powerbi_dashboard_url-> live link to the dataset/report in app.powerbi.compowerbi_dataset_id-> the push dataset's IDchart_paths-> PNGs ingenerated/charts/(embedded in the PDF)pdf_path-> PDF ingenerated/reports/executive_summary,insights,recommendations-> LLM-generated text
How the Power BI integration works
services/powerbi_service.py uses MSAL's client-credentials flow to get an
app-only access token (no human login), then:
Checks if a push dataset with this report's name already exists in the workspace; creates one if not, with a schema matching the DataFrame columns.
Pushes all rows into that dataset via the REST API, in batches.
Returns a URL to view it at
app.powerbi.com.
If Power BI publishing fails (e.g. permission not yet active), the report
still completes with charts/PDF/summary - the error is logged and
powerbi_dashboard_url is left as null in the response.
Extending later
OneDrive upload: add
services/onedrive_service.pyusing Microsoft Graph API (Files.ReadWritepermission on the same Azure AD app) to upload the finished PDF and return a shareable link.Database/Excel input: swap
PromptService._extract_dataframefor a DB/Excel loader - the rest of the pipeline doesn't change.
Project structure
pdf-report-powerbi-mcp/
config/settings.py # env-driven, typed settings
models/ # ReportRequest, ChartSpec, ReportResponse
services/
prompt_service.py # raw text -> ReportRequest (CSV parsing)
openai_service.py # Azure OpenAI wrapper
summary_service.py # data profiling + summary/insights/recs
chart_service.py # matplotlib chart rendering (for the PDF)
powerbi_service.py # real Power BI push-dataset integration
pdf_service.py # ReportLab PDF assembly
tools/generate_report.py # orchestrates the full pipeline
utils/ # logger, helpers
server.py # FastMCP entrypoint
test_local.py # test without an MCP clientThis server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/yestharanthony-png/pdf-report-powerbi-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server