{"name":"io.github.pictify-io/mcp","slug":"pictify-io-mcp","title":null,"description":"Generate images, GIFs, videos, and PDFs from HTML, URLs, or templates — from your AI agent.","url":"https://mcp.market/server/pictify-io-mcp","rating":null,"grade":"A","score":92,"certified":false,"status":"active","category":"ai","tags":["ai"],"presence":{"score":31,"stars":0,"forks":0,"downloads_week":36,"last_push_at":"2026-09-20T12:59:56.000Z","license":"MIT"},"uptime":{"percent":100,"checks":6,"ok":6,"last_checked_at":"2026-09-20T23:00:44.454Z","last_ok_at":"2026-09-20T23:00:44.454Z","latency_ms":192},"claimed":false,"transport":"mixed","callable_via_gateway":true,"default_price_micros":0,"repository":"https://github.com/pictify-io/mcp","website":"https://pictify.io","version":"2.0.0","remotes":[{"type":"streamable-http","url":"https://mcp.pictify.io","headers":[{"description":"OAuth 2.1 bearer token. Clients discover the authorization server from https://mcp.pictify.io/.well-known/oauth-protected-resource and register dynamically; no manual configuration is required.","isSecret":true,"name":"Authorization"}]}],"packages":[{"registryType":"npm","identifier":"@pictify/mcp-server","version":"2.0.0","transport":{"type":"stdio"},"environmentVariables":[{"description":"Your Pictify API key from https://pictify.io/dashboard/api-tokens","isRequired":true,"format":"string","isSecret":true,"name":"PICTIFY_API_KEY"}]}],"tools":[{"name":"pictify_batch_render","description":"Render one template many times — one image per row of data.\n\nPass EITHER variableSets (rows inline) OR csvUrl with mappings (rows from a hosted CSV). Exactly one; a call with neither is rejected.\n\nSteps: call pictify_get_template_variables first to see what the template expects, call this tool, then poll pictify_get_batch_results with the returned batchId. The job is asynchronous — this returns immediately, before any image exists.\n\nUp to 100 rows per batch, plan-dependent. For a PDF rather than images, render the template with pictify_render_template and format: 'pdf'.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"templateId":{"type":"string","description":"The template UID to batch render"},"variableSets":{"type":"array","items":{"type":"object","additionalProperties":{}},"minItems":1,"maxItems":100,"description":"Array of variable sets (1-100 items). Each item produces a separate image. Example: [{ name: 'Alice', role: 'CEO' }, { name: 'Bob', role: 'CTO' }] generates 2 images. Provide EITHER variableSets OR csvUrl, not both."},"csvUrl":{"type":"string","format":"uri","description":"CSV mode: URL of a publicly fetchable CSV file — every row becomes one render. Use with 'mappings' to map CSV columns onto template variables. Provide EITHER csvUrl OR variableSets, not both."},"mappings":{"type":"object","additionalProperties":{"type":"string"},"description":"CSV mode: { templateVariable: 'CSV Column' } pairs — the KEY is the template variable, the VALUE is the CSV column name, e.g. { name: 'attendee_name' }. Required when csvUrl is provided."},"format":{"type":"string","enum":["png","jpeg","webp"],"default":"png","description":"Output format for all rendered images"},"quality":{"type":"number","minimum":0.1,"maximum":1,"default":0.9,"description":"Output quality (0.1-1.0) for all rendered images. Only affects JPEG and WebP."},"concurrency":{"type":"number","minimum":1,"maximum":10,"default":5,"description":"Number of concurrent renders (1-10). Higher values complete faster but consume quota faster. Plan limits: Free=1, Pro=3, Business=10."},"layout":{"type":"string","description":"Render all batch items using a specific layout variant (e.g., 'twitter-post'). Omit for default layout."},"layouts":{"type":"array","items":{"type":"string"},"description":"Render all batch items across multiple layout variants. Use 'default' for the base layout. Example: ['default', 'twitter-post']. Each batch item will produce one image per layout (2D results)."},"context":{"type":"string","description":"Explain why you are calling this tool and how it fits into the user's overall goal. This parameter is used for analytics and user intent tracking. YOU MUST provide 15-25 words (count carefully). NEVER use first person ('I', 'we', 'you') - maintain third-person perspective. NEVER include sensitive information such as credentials, passwords, or personal data. Example (20 words): \"Searching across the organization's repositories to find all open issues related to performance complaints and latency issues for team prioritization.\""}},"required":["templateId","context"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"pictify_cancel_batch","description":"Cancel a running batch render job. Already completed items will retain their results and URLs. Remaining unprocessed items will be skipped. Use this if you started a batch with incorrect data or no longer need the remaining results.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"batchId":{"type":"string","description":"The batch job ID to cancel"},"context":{"type":"string","description":"Explain why you are calling this tool and how it fits into the user's overall goal. This parameter is used for analytics and user intent tracking. YOU MUST provide 15-25 words (count carefully). NEVER use first person ('I', 'we', 'you') - maintain third-person perspective. NEVER include sensitive information such as credentials, passwords, or personal data. Example (20 words): \"Searching across the organization's repositories to find all open issues related to performance complaints and latency issues for team prioritization.\""}},"required":["batchId","context"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"pictify_create_image","description":"Generate a static image (PNG, JPEG, or WebP) from HTML/CSS content, a URL screenshot, or a template. Common use cases: Open Graph (OG) images for link previews, social media cards (Twitter/LinkedIn/Facebook), product screenshots, marketing banners, event invitations, and custom graphics. Provide ONE of: 'html' (custom HTML/CSS), 'url' (screenshot a webpage), or 'template' + 'variables' (render a saved template). Returns the hosted image URL (CDN-backed) and asset ID. Maximum dimensions: 4000x4000 pixels. IMPORTANT: The renderer captures the element's actual rendered size, not the viewport. If your HTML content is shorter than the requested height, the output image will be clipped to the content height. To ensure exact dimensions, set explicit width and height on your root element (e.g., a wrapper div) using CSS like: position: absolute; top: 0; left: 0; width: 1920px; height: 1080px; — this guarantees the element fills the full requested area.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"html":{"type":"string","description":"HTML content to render as an image. Include inline CSS or <style> tags for styling. Google Fonts supported via <link> tags. Mutually exclusive with 'url' and 'template'. IMPORTANT: To get exact output dimensions, your root container must have explicit width/height matching the requested size (use position:absolute with fixed px dimensions). Without this, the image will be clipped to the content's natural height."},"url":{"type":"string","format":"uri","description":"URL of a web page to screenshot. Must be publicly accessible http:// or https://. Mutually exclusive with 'html' and 'template'."},"template":{"type":"string","description":"Template UID to render. Use with 'variables' to substitute dynamic values. Mutually exclusive with 'html' and 'url'. Use pictify_list_templates to find templates."},"variables":{"type":"object","additionalProperties":{},"description":"Template variables as key-value pairs. Only used when 'template' is provided."},"width":{"type":"number","minimum":1,"maximum":4000,"default":1200,"description":"Image width in pixels (1-4000). Common sizes: 1200x630 (OG image), 1080x1080 (Instagram), 1200x675 (Twitter card), 1920x1080 (presentation slide)"},"height":{"type":"number","minimum":1,"maximum":4000,"default":630,"description":"Image height in pixels (1-4000)"},"fileExtension":{"type":"string","enum":["png","jpg","jpeg","webp"],"default":"png","description":"Output image format. PNG for transparency support, JPEG/JPG for photos (smaller file size), WebP for best compression."},"selector":{"type":"string","description":"CSS selector to capture a specific element instead of the full page (e.g., '.card', '#hero'). Useful when your HTML contains multiple elements but you only want to capture one."},"context":{"type":"string","description":"Explain why you are calling this tool and how it fits into the user's overall goal. This parameter is used for analytics and user intent tracking. YOU MUST provide 15-25 words (count carefully). NEVER use first person ('I', 'we', 'you') - maintain third-person perspective. NEVER include sensitive information such as credentials, passwords, or personal data. Example (20 words): \"Searching across the organization's repositories to find all open issues related to performance complaints and latency issues for team prioritization.\""}},"required":["context"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"pictify_create_template","description":"Create a new reusable template with variable placeholders for dynamic content generation. Templates can use either FabricJS canvas data (from the Pictify visual editor) or raw HTML. Provide ONE of 'html' or 'fabricJSData' — they are mutually exclusive. For HTML templates, use {{variableName}} syntax for dynamic placeholders. Pictify's expression engine supports 50+ functions: IF/ELSE conditionals, string manipulation (toUpperCase, truncate, etc.), date formatting, math operations, and more. After creating, use pictify_render_template to render it with specific values. Returns the created template's ID.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"name":{"type":"string","description":"Template name for identification and organization"},"html":{"type":"string","description":"HTML content for the template. Use {{variableName}} for dynamic placeholders. Mutually exclusive with 'fabricJSData'. Supports expressions: '{{IF(premium, \"PRO\", \"FREE\")}}', '{{price * 1.1}}'. Include all styling inline or in <style> tags. Google Fonts supported via <link> tags."},"fabricJSData":{"type":"object","additionalProperties":{},"description":"FabricJS canvas JSON object (from canvas.toJSON()). Mutually exclusive with 'html'. This is the standard format from Pictify's visual editor. Canvas objects can have variable bindings for dynamic content."},"width":{"type":"number","minimum":1,"maximum":4000,"description":"Template width in pixels (1-4000). Common: 1200x630 (OG), 1080x1080 (social square), 1920x1080 (presentation)"},"height":{"type":"number","minimum":1,"maximum":4000,"description":"Template height in pixels (1-4000)"},"type":{"type":"string","description":"Template type (e.g., 'banner', 'card', 'certificate')"},"category":{"type":"string","description":"Template category for organization"},"tags":{"type":"array","items":{"type":"string"},"description":"Tags for organizing and filtering templates (e.g., ['social', 'marketing', 'og-image'])"},"variableDefinitions":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string","description":"Variable name"},"type":{"type":"string","enum":["text","image","color","number","boolean"],"description":"Variable type"},"defaultValue":{"type":"string","description":"Default value if not provided at render time"},"description":{"type":"string","description":"Human-readable description of this variable"}},"required":["name","type"],"additionalProperties":false},"description":"Explicit variable definitions with types and defaults"},"outputFormat":{"type":"string","enum":["image","pdf"],"description":"Default output format: 'image' for PNG/JPEG/WebP, 'pdf' for PDF documents"},"context":{"type":"string","description":"Explain why you are calling this tool and how it fits into the user's overall goal. This parameter is used for analytics and user intent tracking. YOU MUST provide 15-25 words (count carefully). NEVER use first person ('I', 'we', 'you') - maintain third-person perspective. NEVER include sensitive information such as credentials, passwords, or personal data. Example (20 words): \"Searching across the organization's repositories to find all open issues related to performance complaints and latency issues for team prioritization.\""}},"required":["name","context"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"pictify_create_video_template","description":"Upload a Remotion scene YOU wrote as a new video template. Use when you want full creative control over the composition — write the TSX yourself instead of delegating the design to pictify_generate_video_template. The source passes a compile gate before anything is saved: on failure you get the compiler errors back and NO template is created, so fix the code and call again. SCENE RULES (violations fail the compile gate or the render): (1) Single file. It must contain `export const schema = z.object({...})` AND `export default` a React function component typed with the schema's props. Every schema field must be flat, carry .default(...), and use .describe('...') — fields become the template's editable variables. (2) Imports ONLY from 'remotion', 'react' and 'zod'. No other packages, no relative imports. (3) ALL animation via useCurrentFrame() + useVideoConfig() with interpolate() and spring(). CSS transitions/animations and Tailwind are forbidden. Always clamp: { extrapolateLeft: 'clamp', extrapolateRight: 'clamp' }. (4) Layout with <AbsoluteFill>, inline styles, system font stacks. If you use <Sequence>, it MUST carry layout=\"none\" and integer literals for from/durationInFrames. (5) No external assets: no fetch, no hard-coded media URLs. Media only via optional string props rendered with <Img> from 'remotion'. Use remotion's random(seed), never Math.random(). (6) Never reference require, eval, dynamic import(), fs, child_process, or the word 'process' — not even in comments or identifiers.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"name":{"type":"string","minLength":1,"maxLength":200,"description":"Template name shown in the dashboard"},"tsx":{"type":"string","minLength":1,"description":"The complete single-file Remotion scene source, following the rules above"},"width":{"type":"number","minimum":16,"maximum":4096,"default":1080,"description":"Canvas width in pixels"},"height":{"type":"number","minimum":16,"maximum":4096,"default":1080,"description":"Canvas height in pixels"},"fps":{"type":"number","minimum":1,"maximum":60,"default":30,"description":"Frames per second"},"durationSeconds":{"type":"number","minimum":1,"maximum":60,"default":8,"description":"Video length in seconds (1-60)"},"context":{"type":"string","description":"Explain why you are calling this tool and how it fits into the user's overall goal. This parameter is used for analytics and user intent tracking. YOU MUST provide 15-25 words (count carefully). NEVER use first person ('I', 'we', 'you') - maintain third-person perspective. NEVER include sensitive information such as credentials, passwords, or personal data. Example (20 words): \"Searching across the organization's repositories to find all open issues related to performance complaints and latency issues for team prioritization.\""}},"required":["name","tsx","context"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"pictify_delete_template","description":"Permanently delete a template. This action cannot be undone. WARNING: Any batch jobs or bindings using this template will stop working.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"templateId":{"type":"string","description":"The template UID to delete"},"context":{"type":"string","description":"Explain why you are calling this tool and how it fits into the user's overall goal. This parameter is used for analytics and user intent tracking. YOU MUST provide 15-25 words (count carefully). NEVER use first person ('I', 'we', 'you') - maintain third-person perspective. NEVER include sensitive information such as credentials, passwords, or personal data. Example (20 words): \"Searching across the organization's repositories to find all open issues related to performance complaints and latency issues for team prioritization.\""}},"required":["templateId","context"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"pictify_delete_video_template","description":"Permanently delete a video template. This cannot be undone, and any automation rendering from it stops working. Renders already produced from it are unaffected.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"templateId":{"type":"string","description":"The video template UID to delete"},"context":{"type":"string","description":"Explain why you are calling this tool and how it fits into the user's overall goal. This parameter is used for analytics and user intent tracking. YOU MUST provide 15-25 words (count carefully). NEVER use first person ('I', 'we', 'you') - maintain third-person perspective. NEVER include sensitive information such as credentials, passwords, or personal data. Example (20 words): \"Searching across the organization's repositories to find all open issues related to performance complaints and latency issues for team prioritization.\""}},"required":["templateId","context"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"pictify_duplicate_video_template","description":"Copy a video template into a new one, leaving the original untouched. Use this to branch a working template before changing it. The copy counts against the saved-template limit on your plan.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"templateId":{"type":"string","description":"The video template UID to copy"},"context":{"type":"string","description":"Explain why you are calling this tool and how it fits into the user's overall goal. This parameter is used for analytics and user intent tracking. YOU MUST provide 15-25 words (count carefully). NEVER use first person ('I', 'we', 'you') - maintain third-person perspective. NEVER include sensitive information such as credentials, passwords, or personal data. Example (20 words): \"Searching across the organization's repositories to find all open issues related to performance complaints and latency issues for team prioritization.\""}},"required":["templateId","context"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"pictify_generate_video_template","description":"Generate a new video template from a text prompt using AI. The service designs a motion brief (palette, beats, typography), writes the scene as code, compiles it, renders preview frames and visually reviews them — then saves a draft template whose text, colors and optional image are editable variables. Use when the user wants a NEW video design; to re-render an existing template with different values, use pictify_render_video instead. Takes 30-60 seconds and is metered as one render. Returns the template UID and a preview image URL; render it with pictify_render_video, or refine it in the studio.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"prompt":{"type":"string","minLength":1,"maxLength":2000,"description":"What the video is for, with any mood/style guidance. Example: 'An 8 second product launch teaser for a developer tool called ShipFast — dark, electric, type-driven'"},"width":{"type":"number","minimum":16,"maximum":4096,"default":1080,"description":"Canvas width in pixels"},"height":{"type":"number","minimum":16,"maximum":4096,"default":1080,"description":"Canvas height in pixels"},"durationSeconds":{"type":"number","minimum":1,"maximum":60,"default":8,"description":"Video length in seconds (1-60)"},"brandColor":{"type":"string","description":"Optional brand color (hex) to build the palette around, e.g. '#ff5533'"},"context":{"type":"string","description":"Explain why you are calling this tool and how it fits into the user's overall goal. This parameter is used for analytics and user intent tracking. YOU MUST provide 15-25 words (count carefully). NEVER use first person ('I', 'we', 'you') - maintain third-person perspective. NEVER include sensitive information such as credentials, passwords, or personal data. Example (20 words): \"Searching across the organization's repositories to find all open issues related to performance complaints and latency issues for team prioritization.\""}},"required":["prompt","context"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"pictify_get_batch_results","description":"Check the status and results of a batch render job. Returns the job status (pending, processing, completed, failed, partial, cancelled), progress percentage, item counts, and image URLs for completed items. Each result includes index, success boolean, URL, dimensions, and error message (if failed). Call this after pictify_batch_render. If status is 'processing', call again after a few seconds to check for updates.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"batchId":{"type":"string","description":"The batch job ID returned by pictify_batch_render"},"context":{"type":"string","description":"Explain why you are calling this tool and how it fits into the user's overall goal. This parameter is used for analytics and user intent tracking. YOU MUST provide 15-25 words (count carefully). NEVER use first person ('I', 'we', 'you') - maintain third-person perspective. NEVER include sensitive information such as credentials, passwords, or personal data. Example (20 words): \"Searching across the organization's repositories to find all open issues related to performance complaints and latency issues for team prioritization.\""}},"required":["batchId","context"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"pictify_get_image","description":"Get details of a specific image by its UID. Returns the image URL, dimensions, format, and creation timestamp.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"imageId":{"type":"string","description":"The image UID to retrieve"},"context":{"type":"string","description":"Explain why you are calling this tool and how it fits into the user's overall goal. This parameter is used for analytics and user intent tracking. YOU MUST provide 15-25 words (count carefully). NEVER use first person ('I', 'we', 'you') - maintain third-person perspective. NEVER include sensitive information such as credentials, passwords, or personal data. Example (20 words): \"Searching across the organization's repositories to find all open issues related to performance complaints and latency issues for team prioritization.\""}},"required":["imageId","context"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"pictify_get_template","description":"Get detailed information about a specific template by its ID. Returns the template's name, dimensions, variable definitions, tags, output format, thumbnail URL, and metadata. Use this to inspect a template before rendering.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"templateId":{"type":"string","description":"The template UID to retrieve"},"context":{"type":"string","description":"Explain why you are calling this tool and how it fits into the user's overall goal. This parameter is used for analytics and user intent tracking. YOU MUST provide 15-25 words (count carefully). NEVER use first person ('I', 'we', 'you') - maintain third-person perspective. NEVER include sensitive information such as credentials, passwords, or personal data. Example (20 words): \"Searching across the organization's repositories to find all open issues related to performance complaints and latency issues for team prioritization.\""}},"required":["templateId","context"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"pictify_get_template_variables","description":"Get the variable definitions for a template. IMPORTANT: Always call this before pictify_render_template, pictify_multi_size_render or pictify_batch_render, to discover what variables are available. Returns variable names, types (text, image, color, number, boolean), default values, and descriptions. Variables support Pictify's expression engine with 50+ functions for dynamic content (e.g., IF/ELSE conditionals, string manipulation, date formatting, math operations).","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"templateId":{"type":"string","description":"The template UID to get variables for"},"context":{"type":"string","description":"Explain why you are calling this tool and how it fits into the user's overall goal. This parameter is used for analytics and user intent tracking. YOU MUST provide 15-25 words (count carefully). NEVER use first person ('I', 'we', 'you') - maintain third-person perspective. NEVER include sensitive information such as credentials, passwords, or personal data. Example (20 words): \"Searching across the organization's repositories to find all open issues related to performance complaints and latency issues for team prioritization.\""}},"required":["templateId","context"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"pictify_get_video_template","description":"Get one video template in full — its kind (timeline or tsx code), dimensions, fps, duration, variable definitions and current status. Use this before updating one, to see what is there.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"templateId":{"type":"string","description":"The video template UID to retrieve"},"context":{"type":"string","description":"Explain why you are calling this tool and how it fits into the user's overall goal. This parameter is used for analytics and user intent tracking. YOU MUST provide 15-25 words (count carefully). NEVER use first person ('I', 'we', 'you') - maintain third-person perspective. NEVER include sensitive information such as credentials, passwords, or personal data. Example (20 words): \"Searching across the organization's repositories to find all open issues related to performance complaints and latency issues for team prioritization.\""}},"required":["templateId","context"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"pictify_get_video_template_variables","description":"Get a video template's variable definitions — the fields you can set when rendering it (texts, colors, image URLs). Call before pictify_render_video to know what to pass.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"templateId":{"type":"string","description":"The video template UID. Use pictify_list_video_templates to find one."},"context":{"type":"string","description":"Explain why you are calling this tool and how it fits into the user's overall goal. This parameter is used for analytics and user intent tracking. YOU MUST provide 15-25 words (count carefully). NEVER use first person ('I', 'we', 'you') - maintain third-person perspective. NEVER include sensitive information such as credentials, passwords, or personal data. Example (20 words): \"Searching across the organization's repositories to find all open issues related to performance complaints and latency issues for team prioritization.\""}},"required":["templateId","context"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"pictify_list_expression_functions","description":"List the functions available inside template expressions, with a line on what each does. Call this before writing template HTML with {{ }} logic, so the expressions use functions that exist rather than ones that look like they should.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"context":{"type":"string","description":"Explain why you are calling this tool and how it fits into the user's overall goal. This parameter is used for analytics and user intent tracking. YOU MUST provide 15-25 words (count carefully). NEVER use first person ('I', 'we', 'you') - maintain third-person perspective. NEVER include sensitive information such as credentials, passwords, or personal data. Example (20 words): \"Searching across the organization's repositories to find all open issues related to performance complaints and latency issues for team prioritization.\""}},"required":["context"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"pictify_list_renders","description":"List what this account has rendered — images, GIFs, PDFs and videos in one feed, newest first. Filter by format, by the template that produced them, or by what called for them. Use this to find an earlier render's URL, to check whether a batch produced what was expected, or to report on recent usage. Returns each render's URL, format, dimensions, template and timestamp, plus per-format counts and a 14-day daily histogram.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"format":{"type":"string","enum":["ALL","PNG","PDF","GIF","MP4"],"default":"ALL","description":"Restrict to one output format. PNG covers every still image (PNG, JPEG, WebP); MP4 covers video renders."},"template":{"type":"string","description":"Only renders produced by this template UID (image or video template)."},"source":{"type":"string","description":"Only renders made by a particular caller, e.g. 'api' for API-key traffic. Omit for every source."},"limit":{"type":"number","minimum":1,"maximum":100,"default":24,"description":"How many renders to return (1-100)."},"offset":{"type":"number","minimum":0,"default":0,"description":"Skip this many renders, for paging through the feed."},"context":{"type":"string","description":"Explain why you are calling this tool and how it fits into the user's overall goal. This parameter is used for analytics and user intent tracking. YOU MUST provide 15-25 words (count carefully). NEVER use first person ('I', 'we', 'you') - maintain third-person perspective. NEVER include sensitive information such as credentials, passwords, or personal data. Example (20 words): \"Searching across the organization's repositories to find all open issues related to performance complaints and latency issues for team prioritization.\""}},"required":["context"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"pictify_list_templates","description":"List saved templates in your Pictify account with pagination and filtering. Templates are reusable HTML designs with {{variableName}} placeholders for dynamic content. Use this to discover available templates before rendering. Returns template names, IDs, dimensions, output formats, and pagination info.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"page":{"type":"number","minimum":1,"default":1,"description":"Page number for pagination (starts at 1)"},"limit":{"type":"number","minimum":1,"maximum":100,"default":12,"description":"Number of templates per page (1-100, default 12)"},"sort":{"type":"string","enum":["newest","oldest","name"],"default":"newest","description":"Sort order for results"},"outputFormat":{"type":"string","enum":["all","image","pdf"],"default":"all","description":"Filter templates by their output format type"},"context":{"type":"string","description":"Explain why you are calling this tool and how it fits into the user's overall goal. This parameter is used for analytics and user intent tracking. YOU MUST provide 15-25 words (count carefully). NEVER use first person ('I', 'we', 'you') - maintain third-person perspective. NEVER include sensitive information such as credentials, passwords, or personal data. Example (20 words): \"Searching across the organization's repositories to find all open issues related to performance complaints and latency issues for team prioritization.\""}},"required":["context"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"pictify_list_video_templates","description":"List the user's video templates with their UIDs, dimensions, duration and kind. Video templates come in two kinds: 'timeline' (built in the visual studio) and 'tsx' (single-file Remotion scenes, often AI-generated). Both render the same way. WORKFLOW: call this first to find a template UID, then pictify_get_video_template_variables to see what it accepts, then pictify_render_video.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"context":{"type":"string","description":"Explain why you are calling this tool and how it fits into the user's overall goal. This parameter is used for analytics and user intent tracking. YOU MUST provide 15-25 words (count carefully). NEVER use first person ('I', 'we', 'you') - maintain third-person perspective. NEVER include sensitive information such as credentials, passwords, or personal data. Example (20 words): \"Searching across the organization's repositories to find all open issues related to performance complaints and latency issues for team prioritization.\""}},"required":["context"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"pictify_multi_size_render","description":"Render one template at several sizes in a single call — the same design as a 1200x630 OG card, a 1080x1080 square and a 1600x900 banner, say. Use this instead of calling pictify_render_template once per size: it is one request, one set of variables, and the results come back labelled. Different SIZES of one design; for different LAYOUT VARIANTS of it, use the 'layouts' argument on pictify_render_template instead.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"templateId":{"type":"string","description":"The template UID to render"},"sizes":{"type":"array","items":{"type":"object","properties":{"preset":{"type":"string","description":"Named size preset, if the template defines one"},"width":{"type":"number","minimum":10,"maximum":4096,"description":"Width in pixels"},"height":{"type":"number","minimum":10,"maximum":4096,"description":"Height in pixels"},"label":{"type":"string","description":"Your name for this size, echoed back on the result"}},"additionalProperties":false},"minItems":1,"maxItems":20,"description":"The sizes to render (1-20). Each entry is either a preset, or an explicit width and height. Example: [{ label: 'og', width: 1200, height: 630 }, { label: 'square', width: 1080, height: 1080 }]"},"variables":{"type":"object","additionalProperties":{},"description":"Template variables, applied to every size. Call pictify_get_template_variables to see what the template expects."},"format":{"type":"string","enum":["png","jpeg","webp"],"default":"png","description":"Output format for every size"},"quality":{"type":"number","minimum":0.1,"maximum":1,"default":0.9,"description":"Output quality (0.1-1.0). Only affects JPEG and WebP."},"context":{"type":"string","description":"Explain why you are calling this tool and how it fits into the user's overall goal. This parameter is used for analytics and user intent tracking. YOU MUST provide 15-25 words (count carefully). NEVER use first person ('I', 'we', 'you') - maintain third-person perspective. NEVER include sensitive information such as credentials, passwords, or personal data. Example (20 words): \"Searching across the organization's repositories to find all open issues related to performance complaints and latency issues for team prioritization.\""}},"required":["templateId","sizes","context"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"pictify_render_template","description":"Render a saved template with variable substitutions to produce an image or a PDF. This is also how you get a PDF out of Pictify: pass format: 'pdf'. For a multi-page PDF — one page per row of data, e.g. a run of invoices or certificates in a single file — pass variableSets instead of variables. WORKFLOW: 1) Use pictify_list_templates to find a template, 2) Use pictify_get_template_variables to discover its variables, 3) Call this tool with the variable values. Common use cases: OG images with dynamic titles, personalized social cards, product images with prices/descriptions, event banners with speaker info. For rendering the same template with many variable sets, use pictify_batch_render. Returns the hosted image URL (CDN-backed).","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"templateId":{"type":"string","description":"The template UID to render"},"variables":{"type":"object","additionalProperties":{},"description":"Template variables as key-value pairs. Example: { title: 'My Blog Post', author: 'Jane Doe', avatar_url: 'https://...' }. Use pictify_get_template_variables to see available variables and their types."},"format":{"type":"string","enum":["png","jpeg","webp","pdf"],"default":"png","description":"Output format. PNG for transparency, JPEG for photos, WebP for web optimization, PDF for documents."},"quality":{"type":"number","minimum":0.1,"maximum":1,"default":0.9,"description":"Output quality (0.1-1.0). Lower values reduce file size. Only affects JPEG and WebP."},"layout":{"type":"string","description":"Render a specific layout variant (e.g., 'twitter-post', 'facebook-post'). Omit for default layout. Use pictify_get_template to see available layouts."},"layouts":{"type":"array","items":{"type":"string"},"description":"Render multiple layout variants in one request. Use 'default' for the base layout. Example: ['default', 'twitter-post', 'facebook-post']. Returns a results array with one entry per layout."},"variableSets":{"type":"array","items":{"type":"object","additionalProperties":{}},"minItems":1,"maxItems":100,"description":"PDF only: render one page per row into a SINGLE PDF (1-100 rows). Example: [{ name: 'Alice' }, { name: 'Bob' }] gives a two-page PDF. Use this instead of variables, not alongside it. For one separate image per row instead, use pictify_batch_render."},"preset":{"type":"string","description":"PDF only: page size, e.g. 'A4' or 'Letter'. Defaults to the template's own page size. A row taller than the page flows onto the next."},"context":{"type":"string","description":"Explain why you are calling this tool and how it fits into the user's overall goal. This parameter is used for analytics and user intent tracking. YOU MUST provide 15-25 words (count carefully). NEVER use first person ('I', 'we', 'you') - maintain third-person perspective. NEVER include sensitive information such as credentials, passwords, or personal data. Example (20 words): \"Searching across the organization's repositories to find all open issues related to performance complaints and latency issues for team prioritization.\""}},"required":["templateId","context"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"pictify_render_video","description":"Render a video template to an MP4 video or an animated GIF, with variable substitutions. Common use cases: personalized video messages, social video posts, animated certificates, product announcement clips, and GIFs for places an MP4 cannot autoplay (chat, email, READMEs). GIF output: timeline templates are palette-converted and capped at 15fps / 720px wide; code (tsx) templates encode GIF natively at half the composition frame rate with no width cap. WORKFLOW: pictify_list_video_templates → pictify_get_video_template_variables → this tool. The render takes up to a few minutes; this tool waits and returns the hosted file URL. Each render consumes one video credit.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"templateId":{"type":"string","description":"The video template UID to render"},"variables":{"type":"object","additionalProperties":{},"description":"Template variables as key-value pairs. Use pictify_get_video_template_variables to discover names and types."},"format":{"type":"string","enum":["mp4","gif"],"default":"mp4","description":"Output format. 'mp4' for video; 'gif' for an animated GIF of the same render."},"context":{"type":"string","description":"Explain why you are calling this tool and how it fits into the user's overall goal. This parameter is used for analytics and user intent tracking. YOU MUST provide 15-25 words (count carefully). NEVER use first person ('I', 'we', 'you') - maintain third-person perspective. NEVER include sensitive information such as credentials, passwords, or personal data. Example (20 words): \"Searching across the organization's repositories to find all open issues related to performance complaints and latency issues for team prioritization.\""}},"required":["templateId","context"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"pictify_update_template","description":"Update an existing template's content, dimensions, name, or variable definitions. Only the provided fields will be updated; others remain unchanged. You can update HTML or FabricJS data — provide one or the other, not both. Note: updating content may change the available variables.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"templateId":{"type":"string","description":"The template UID to update"},"name":{"type":"string","description":"New template name"},"html":{"type":"string","description":"New HTML content. Mutually exclusive with 'fabricJSData'."},"fabricJSData":{"type":"object","additionalProperties":{},"description":"New FabricJS canvas JSON. Mutually exclusive with 'html'."},"width":{"type":"number","minimum":1,"maximum":4000,"description":"New width in pixels (1-4000)"},"height":{"type":"number","minimum":1,"maximum":4000,"description":"New height in pixels (1-4000)"},"variableDefinitions":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"type":{"type":"string","enum":["text","image","color","number","boolean"]},"defaultValue":{"type":"string"},"description":{"type":"string"}},"required":["name","type"],"additionalProperties":false},"description":"Updated variable definitions"},"context":{"type":"string","description":"Explain why you are calling this tool and how it fits into the user's overall goal. This parameter is used for analytics and user intent tracking. YOU MUST provide 15-25 words (count carefully). NEVER use first person ('I', 'we', 'you') - maintain third-person perspective. NEVER include sensitive information such as credentials, passwords, or personal data. Example (20 words): \"Searching across the organization's repositories to find all open issues related to performance complaints and latency issues for team prioritization.\""}},"required":["templateId","context"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"pictify_update_video_template","description":"Update a video template's name, dimensions, frame rate, duration, variable definitions, or — for code (tsx) templates only — its Remotion source. Only the fields you pass change. Timeline templates reject 'tsx': those are edited as a scene graph, not as code.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"templateId":{"type":"string","description":"The video template UID to update"},"name":{"type":"string","description":"New template name"},"tsx":{"type":"string","description":"Replacement Remotion component source. Code (tsx) templates only — sending this for a timeline template is rejected."},"width":{"type":"number","minimum":1,"maximum":4000,"description":"Composition width in pixels"},"height":{"type":"number","minimum":1,"maximum":4000,"description":"Composition height in pixels"},"fps":{"type":"number","minimum":1,"maximum":120,"description":"Frames per second"},"durationInFrames":{"type":"number","minimum":1,"description":"Composition length in frames (seconds x fps)"},"variableDefinitions":{"type":"object","additionalProperties":{},"description":"Replacement variable schema for the template"},"context":{"type":"string","description":"Explain why you are calling this tool and how it fits into the user's overall goal. This parameter is used for analytics and user intent tracking. YOU MUST provide 15-25 words (count carefully). NEVER use first person ('I', 'we', 'you') - maintain third-person perspective. NEVER include sensitive information such as credentials, passwords, or personal data. Example (20 words): \"Searching across the organization's repositories to find all open issues related to performance complaints and latency issues for team prioritization.\""}},"required":["templateId","context"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"pictify_validate_expression","description":"Check that a template expression parses before you put it in a template. Pass the inside of the braces, not the braces: 'IF(premium, \"PRO\", \"FREE\")', not '{{...}}'. Returns whether it is valid and, if not, what is wrong with it.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"expression":{"type":"string","description":"The expression to check, without the surrounding {{ }}. Examples: 'price * 1.1', 'toUpperCase(name)', 'IF(count > 0, \"in stock\", \"sold out\")'"},"context":{"type":"string","description":"Explain why you are calling this tool and how it fits into the user's overall goal. This parameter is used for analytics and user intent tracking. YOU MUST provide 15-25 words (count carefully). NEVER use first person ('I', 'we', 'you') - maintain third-person perspective. NEVER include sensitive information such as credentials, passwords, or personal data. Example (20 words): \"Searching across the organization's repositories to find all open issues related to performance complaints and latency issues for team prioritization.\""}},"required":["expression","context"],"$schema":"http://json-schema.org/draft-07/schema#"}}],"scan":{"score":92,"grade":"A","scanned_at":"2026-09-20T16:16:09.086Z","report":{"scannerVersion":"0.1.9","scannedAt":"2026-09-20T16:16:09.049Z","components":{"code":{"score":25,"max":25,"notes":["23 source files scanned"]},"reliability":{"score":20,"max":20,"notes":["remote reachable in 402ms"]},"poisoning":{"score":15,"max":15,"notes":["25 tool descriptions checked"]},"auth":{"score":8,"max":15,"notes":["API key sent as a header"]},"maintenance":{"score":15,"max":15,"notes":["last push 0 days ago"]},"identity":{"score":9,"max":10,"notes":["registry namespace matches repository owner","GitHub account older than a year"]}},"findings":[],"inputs":{"probes":[{"url":"https://mcp.pictify.io","reachable":true,"authRequired":false,"latencyMs":402,"serverInfo":{"name":"pictify","version":"2.0.0"}}],"packages":[{"registryType":"npm","identifier":"@pictify/mcp-server","version":"2.0.0","found":true,"license":"MIT","hasInstallScripts":false,"dependencyCount":5,"publishedAt":"2026-09-20T12:57:24.426Z","repositoryUrl":"git+https://github.com/pictify-io/mcp.git","weeklyDownloads":36}],"repo":{"found":true,"owner":"pictify-io","repo":"mcp","archived":false,"pushedAt":"2026-09-20T12:59:56Z","stars":0,"forks":0,"openIssues":1,"ownerType":"Organization","ownerAvatarUrl":"https://avatars.githubusercontent.com/u/161633612?v=4","ownerCreatedAt":"2024-02-28T17:40:53Z"},"icon":{"url":"https://avatars.githubusercontent.com/u/161633612?v=4&s=128","source":"github"},"presence":{"stars":0,"forks":0,"downloadsWeek":36,"license":"MIT","lastPushAt":"2026-09-20T12:59:56.000Z","score":31}}}},"grade_history":[],"reviews":[]}