INDIVIDUAL MCP TOOL
create_template
Create a new template from Template DSL (call get_dsl_schema first).
LIVE ENDPOINT
https://templateson.com/api/mcp
Connect to this endpoint to inspect the live schema for create_template and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Potential side effects detected · medium confidence · heuristic, not a guarantee.
- A tool name or description contains a write-action term.
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.templates-on-api]
url = "https://templateson.com/api/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"templates-on-api": {
"type": "http",
"url": "https://templateson.com/api/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: templates-on-api
Remote MCP URL: https://templateson.com/api/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": {
"templates-on-api": {
"url": "https://templateson.com/api/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"templates-on-api": {
"type": "http",
"url": "https://templateson.com/api/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "templates-on-api",
"transport": "streamable-http",
"url": "https://templateson.com/api/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
list_templates— List all templates accessible to the API key — your own templates plus all public ones.get_template_fields— Get the dynamic fields for a template.render_image— Render a template as a PNG image.render_pdf— Render a template as a PDF document.get_dsl_schema— Get the Template DSL grammar reference.preview_template— FREE dry-run: convert DSL to SVG and return it with layout warnings, WITHOUT saving or spending a render.update_template— Overwrite an existing template's design with new Template DSL.bulk_render— Render one template against many records in a single call — N records → N PNGs (or PDFs).