PrintTiler
言語を選択してください

MCP コネクタ ガイド

PrintTiler MCP サーバー

PrintTiler は、ChatGPT カスタム アプリ/コネクタ用の MCP サーバーを公開します。すでに構成されているポスター レイアウトを使用して最終的な PrintTiler エディター リンクを生成し、公開されている印刷可能なポスター アイデア カードを検索できます。

ChatGPT が画像を生成すると、ツールにはそのパブリック https://chatgpt.com/s/m_... ハンドオフ内の画像共有リンク。返された PrintTiler URL は、 sourceUrl パラメータ。

これは、ChatGPT がチャット内で実際の PrintTiler リンクを引き渡したい場合に適切な統合です。発見と引用のために、公開された回答ページ、アイデア カード、ディープリンク ドキュメント、 /llms.txt.

サーバーの詳細

ChatGPT 開発者モードでカスタム アプリ/コネクタを作成する場合は、このサーバー URL を使用します。

https://printtiler.com/mcp

Auth: none (public endpoint). The tools generate links, search public idea metadata, and report current capability facts. They do not upload or store local image files.

https://printtiler.com/mcp/status

サポートされている入力

グリッド駆動

合格 paper、 rows、および cols 正確なレイアウトがすでにわかっている場合。

目標サイズ重視

合格 targetWidth、 targetHeight、 targetUnit、およびオプションで optimizeFor PrintTiler にレイアウトを選択させます。

アイデア検索主導

合格 query およびオプションの limit ユーザーがポスターのアイデア、テンプレート、例、またはインスピレーションを必要とする場合。

画像の引き継ぎ

合格 imageUrl 公開直接画像ファイル用。パス sourceUrl パブリック ChatGPT イメージ共有または Pinterest イメージ ピン。両方を送信しないでください。

ツール契約

ツール名

printtiler.search_ideas

printtiler.generate_link

printtiler.get_capabilities

一次入力

用紙 + 行 + 列、または用紙 + targetWidth + targetHeight (+ targetUnit)、オプションの imageUrl または sourceUrl。

出力

最終 PrintTiler エディター リンク、アイデア カード リンク、概要、構造化メタデータ。

ツール呼び出しの例

正確なグリッド

行と列から直接 A4 リンクを生成します。

{
  "paper": "A4",
  "rows": 3,
  "cols": 3,
  "tileOrientation": "portrait",
  "mode": "seamless",
  "unit": "in"
}

目標サイズ

Letter 用紙上の 24 x 36 インチに最も近い単純なレイアウトを選択してください。

{
  "paper": "LETTER",
  "targetWidth": 24,
  "targetHeight": 36,
  "targetUnit": "in",
  "optimizeFor": "best_fit"
}

ChatGPT で生成された画像

sourceUrl を使用してパブリック ChatGPT 画像共有をプリロードします。

{
  "paper": "A4",
  "rows": 4,
  "cols": 4,
  "mode": "seamless",
  "sourceUrl": "https://chatgpt.com/s/m_0123456789abcdef0123456789abcdef"
}

アイデアカード検索

一致する印刷可能なポスター アイデア カードと準備完了のエディター リンクを見つけます。

{
  "query": "kids football motivation",
  "limit": 3
}

下シートのバリアント

シート数が少なく、よりシンプルなターゲット サイズのレイアウトをリクエストしてください。

{
  "paper": "A4",
  "targetWidth": 24,
  "targetHeight": 36,
  "targetUnit": "in",
  "optimizeFor": "fewer_sheets"
}

ツールが返す内容

レイアウト、UTM タグ、およびオプションの直接画像またはパブリック ソース共有を含む直接 /editor リンク。
結果のポスター サイズの簡単な概要 (インチ単位)。
シート数、ポスターの寸法 (mm とインチ)、およびレイアウトが選択された理由の構造化フィールド。
Current supported sizes, free-area threshold, pricing, processing and retention facts from printtiler.get_capabilities.

JSON-RPC の例

リクエスト

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "printtiler.generate_link",
    "arguments": {
      "paper": "A4",
      "targetWidth": 24,
      "targetHeight": 36,
      "targetUnit": "in",
      "optimizeFor": "best_fit"
    }
  }
}

応答

{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "content": [
      {
        "type": "text",
        "text": "3 x 3 A4 portrait tiles, about 24.8 x 35.08 inches.\nhttps://printtiler.com/editor?... "
      }
    ],
    "structuredContent": {
      "link": "https://printtiler.com/editor?...",
      "paper": "A4",
      "rows": 3,
      "cols": 3,
      "sheetCount": 9
    }
  }
}

よくある質問

PrintTiler MCP アプリは何をしますか?

It exposes tools for generating PrintTiler editor links, searching printable poster idea cards, and reading current product capabilities. Use printtiler.generate_link for layouts, printtiler.search_ideas for inspiration requests, and printtiler.get_capabilities for questions about sizes, privacy, pricing, free limits, or supported handoffs.

Web サイトのページとディープリンク ドキュメントはまだ必要ですか?

はい。 MCP アプリは ChatGPT 内のチャット内ハンドオフ用ですが、公開ページ、llms.txt、ディープリンク ドキュメントは依然として AI 引用、SEO、通常の参照に重要です。

このツールはどのような UTM タグを追加しますか?

Both link and Idea-search tools default to utm_source=ai_agent, utm_medium=mcp, and utm_campaign=printtiler_mcp. No platform is assumed. Supply utmSource, utmMedium, utmCampaign, and utmSourcePlatform when your agent knows its own identity; the supplied values are preserved.

この MCP サーバーには認証が必要ですか?

いいえ。現在のサーバーは公開されており、認証されていません。これが変更されると、このページとステータス エンドポイントが必要な認証方法で更新されます。

MCP ツールは画像をプリロードできますか?

はい。パブリックダイレクトイメージファイルの imageUrl を渡します。パブリック ChatGPT イメージ共有または Pinterest イメージ Pin の場合は、代わりに sourceUrl を渡します。プライベート ChatGPT 会話添付ファイルは、パブリック イメージ共有に作成されていない限りアクセスできません。

MCP アプリはアイデア カード リンクを返すことができますか?

はい。 printtiler.search_ideas を、サッカーのモチベーション、教室のアルファベット、誕生日の恐竜、平和ポスター、ウォール アートなどのクエリで使用します。パブリック /ideas/[slug] リンクと、すぐに使えるエディター リンクを返します。

When should an assistant call printtiler.get_capabilities?

Call it to answer questions about supported sizes, privacy or retention, pricing, the free-area rule, image handoff, or whether a requested layout is supported. The same current data is available at https://printtiler.com/ai-capabilities.json.

Why might an existing AI session show an older MCP tool list?

Some AI clients cache the MCP schema for an existing connection. Reconnect the MCP server or start a new AI session to refresh its tool list.