From 90b8f5c950872bef2c720d5e32b43906ea179b62 Mon Sep 17 00:00:00 2001 From: Suyash Thakur Date: Sun, 24 May 2026 19:26:22 +0530 Subject: [PATCH] docs(mcp): add Pictify to mcpServers secrets example MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds the @pictify/mcp-server entry alongside Supabase and GitHub in the 'Work with Secrets in MCP Servers' example. Pictify is an MCP server for rendering images, GIFs, and PDFs from HTML/URLs/templates — a common agent need (OG images, social cards, invoices, certificates) that isn't covered by the existing examples. Co-Authored-By: Paperclip --- docs/customize/deep-dives/mcp.mdx | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/customize/deep-dives/mcp.mdx b/docs/customize/deep-dives/mcp.mdx index f2c3b78a521..11c743852d9 100644 --- a/docs/customize/deep-dives/mcp.mdx +++ b/docs/customize/deep-dives/mcp.mdx @@ -175,5 +175,14 @@ mcpServers: - "@modelcontextprotocol/server-github" env: GITHUB_PERSONAL_ACCESS_TOKEN: ${{ secrets.GITHUB_PERSONAL_ACCESS_TOKEN }} + - name: Pictify + command: npx + args: + - "-y" + - "@pictify/mcp-server" + env: + PICTIFY_API_KEY: ${{ secrets.PICTIFY_API_KEY }} # ... ``` + +The Pictify MCP server lets the agent render images, GIFs, and PDFs from HTML, URLs, or reusable templates — useful when a chat turn needs to produce a publish-ready file (OG image, social card, invoice, certificate) rather than just describing one. See [`@pictify/mcp-server`](https://github.com/pictify-io/mcp) for the full tool list.