TemplateFox MCP Server
OfficialClick 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., "@TemplateFox MCP ServerGenerate an invoice PDF from my Invoice template for John Doe for $150.00"
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.
TemplateFox MCP Server
MCP (Model Context Protocol) server for the TemplateFox PDF generation API. Generate PDFs from templates directly through AI assistants like Claude, Cursor, and Windsurf.
Installation
Claude Desktop
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"templatefox": {
"command": "npx",
"args": ["-y", "@templatefox/mcp-server"],
"env": {
"TEMPLATEFOX_API_KEY": "sk_your_api_key_here"
}
}
}
}Claude Code
claude mcp add templatefox -- npx -y @templatefox/mcp-serverThen set the environment variable TEMPLATEFOX_API_KEY in your shell.
Cursor / Windsurf
Use the same npx -y @templatefox/mcp-server command in your MCP server configuration, with TEMPLATEFOX_API_KEY in the environment.
Global Install (alternative)
npm install -g @templatefox/mcp-serverThen use templatefox-mcp-server as the command instead of npx.
Related MCP server: @docujson/mcp
Configuration
Environment Variable | Required | Description |
| Yes | Your API key (starts with |
| No | Override API base URL (default: |
Available Tools
Tool | Description |
| Generate a PDF from a template with dynamic data (1 credit) |
| Queue async PDF generation with optional webhook (1 credit) |
| Check the status of an async PDF job |
| List async PDF generation jobs |
| List all available templates |
| Get the fields/variables for a template |
| Check remaining credits and account info |
| View credit transaction history |
Remote Server (HTTP)
The MCP server also supports HTTP transport via Streamable HTTP, suitable for remote and cloud deployments.
Connect via URL
https://mcp-server-599407781746.us-central1.run.app/mcpMCP clients must pass the API key via HTTP header:
Authorization: Bearer sk_your_api_key_hereor:
x-api-key: sk_your_api_key_hereSelf-host
Run the server in HTTP mode by setting the PORT environment variable:
PORT=8080 TEMPLATEFOX_API_KEY=sk_your_key node dist/index.jsOr with Docker:
docker build -t templatefox-mcp .
docker run -p 8080:8080 templatefox-mcpThe MCP endpoint is available at http://localhost:8080/mcp and a health check at http://localhost:8080/health.
Example Usage
Once configured, you can ask your AI assistant:
"List my PDF templates and generate an invoice using the Invoice Template with customer name 'John Doe' and amount 150.00"
The assistant will:
Call
list_templatesto find available templatesCall
get_template_fieldsto discover required fieldsCall
generate_pdfwith the template ID and dataReturn the PDF download URL
Links
License
MIT
This 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.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables AI agents and users to process documents through natural language, supporting PDF operations like text extraction, redaction, splitting, form filling, annotations, and content search.1161MIT
- AlicenseNot gradedqualityDmaintenanceConnects AI assistants to DocuJSON for PDF generation, template management, and API operations via natural language. It enables tasks like creating invoices, managing templates, and viewing usage stats through MCP-compatible tools.13MIT
- AlicenseBqualityDmaintenanceEnables PDF manipulation including text, images, annotations, form fields, page operations, and metadata through natural language.16MIT

mcp-server-pdfnoodleofficial
AlicenseNot gradedqualityDmaintenanceEnables AI assistants to generate PDF documents from templates or raw HTML using natural language, with tools for template creation, PDF generation, and utility operations.191MIT
Related MCP Connectors
Generate PDFs from templates via AI chat. Works with Claude, ChatGPT, Cursor, and any MCP client.
Turn a description into a shareable, editable PDF — invoices, certificates, reports, resumes.
Generate PDF reports from Re:port Flow templates via Claude and other AI agents.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/TemplateFoxPDF/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server