INDIVIDUAL MCP TOOL
get_template
Fetch a single template (library or caller-owned) by ID, including its full DSL source and sampleData.
LIVE ENDPOINT
https://makespdf.com/api/v1/mcp
Connect to this endpoint to inspect the live schema for get_template and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- A tool name or description suggests retrieving external content.
Parent server
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.makespdf-mcp]
url = "https://makespdf.com/api/v1/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"makespdf-mcp": {
"type": "http",
"url": "https://makespdf.com/api/v1/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: makespdf-mcp
Remote MCP URL: https://makespdf.com/api/v1/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"makespdf-mcp": {
"url": "https://makespdf.com/api/v1/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"makespdf-mcp": {
"type": "http",
"url": "https://makespdf.com/api/v1/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "makespdf-mcp",
"transport": "streamable-http",
"url": "https://makespdf.com/api/v1/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
validate_dsl— Validate a PDF template DSL script for structure, tag/style correctness, and accessibility issues.validate_markdown— Validate a markdown document for PDF/UA-1 accessibility issues (heading hierarchy, missing alt text).render_dsl_preview— Render a DSL template + data to a preview PDF.render_template— Render any readable template (curated library row or caller-owned) to a real PDF.save_template— Save a user-owned DSL template for later reuse via /api/v1/render.list_templates— List templates visible to the caller — both curated library templates (no owner) and the caller's own saved templates.update_template— Update a saved template's DSL, name, description, and/or sampleData.delete_template— Delete a caller-owned template by ID.