Canvaのデザインを複数のソーシャルメディア形式(Facebookの投稿、Facebookのストーリーズ、Instagramの投稿、Instagramのストーリーズ、LinkedInの投稿)にサイズ変更します。 次のような場合に使用: ユーザーが複数のソーシャルメディアプラットフォーム向けにCanvaデザインを一度にサイズ変更したい場合に活用できます。手作業で1つ1つ形式を変更する手間が削減できます。
Resize a Canva design into multiple social media formats (Facebook post, Facebook story, Instagram post, Instagram story, LinkedIn post). Use this skill when users want to resize Canva designs specifically for multiple social media platforms in one operation, rather than resizing to a single format manually.
Automatically resize a single Canva design into multiple social media formats.
This skill enables rapid multi-platform content distribution by taking a single Canva design and creating optimized versions for:
All resized versions are provided with Canva edit links so users can further edit or download them directly from Canva.
Determine which Canva design the user wants to resize. This can be provided in three ways:
Direct design ID: User provides a design ID (starts with "D")
get-design tool to retrieve design informationDirect design URL: User provides a Canva design link
/design/ and before the next / or query parameter)get-design toolSearch by design name: Use search-designs tool with the design name as the query
Current context: If the user just created or edited a design in the conversation, use that design ID
Implementation note: When searching by name, pass the design name directly to search-designs as the query parameter. The tool will find the best match based on the design title.
Use the get-design tool with the design ID to:
Present the available formats and ask which ones the user wants:
Which platforms and formats would you like to resize for?
- Facebook post (1200×630)
- Facebook story (1080×1920)
- Instagram post (1080×1080)
- Instagram story (1080×1920)
- LinkedIn post (1200×627)
If the user says "all" or "all social media", use all five. Otherwise, only resize for the ones they select.
Execute the resize operations in parallel by calling the resize-design tool once for each selected format. Use these exact specifications:
Available formats and dimensions:
Facebook Post: 1200 × 630 pixels (custom)
design_type: { type: "custom", width: 1200, height: 630 }
Facebook Story: 1080 × 1920 pixels (custom)
design_type: { type: "custom", width: 1080, height: 1920 }
Instagram Post: 1080 × 1080 pixels (custom)
design_type: { type: "custom", width: 1080, height: 1080 }
Instagram Story: 1080 × 1920 pixels (custom)
design_type: { type: "custom", width: 1080, height: 1920 }
LinkedIn Post: 1200 × 627 pixels (custom)
design_type: { type: "custom", width: 1200, height: 627 }
Note: Facebook Story and Instagram Story have identical dimensions. Create both versions but inform the user they're the same size.
Error handling: If a resize operation fails, continue with remaining formats and report which formats succeeded and which failed at the end.
Present comprehensive results to the user:
Provide the user with a summary including:
Presentation format example:
✅ Successfully resized your design for all social media platforms!
Edit Links:
**Facebook Post** (1200×630)
- [Edit in Canva](edit_url)
**Facebook Story** (1080×1920)
- [Edit in Canva](edit_url)
**Instagram Post** (1080×1080)
- [Edit in Canva](edit_url)
**Instagram Story** (1080×1920)
- [Edit in Canva](edit_url)
**LinkedIn Post** (1200×627)
- [Edit in Canva](edit_url)
Note: Facebook Story and Instagram Story use the same dimensions (1080×1920).
Implementation details:
resize-design tool response (use the urls.edit_url field from each resized design)resize-design is available in the current MCP tools. If not, inform the user that this skill requires the Canva MCP resize tool in the current host原文・著作権は Anthropic および各プラグイン作者に帰属します。日本語訳は Claude API による自動翻訳です。