Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseSkill for publishing to LinkedIn through the LinkedIn integration exposed by the Hyper MCP.
通过Hyper MCP提供的LinkedIn集成实现LinkedIn内容发布的Skill。
Out of scope — defer to other skills
超出范围事项 — 转交其他Skill处理
| Request | Send them to |
|---|---|
| Instagram post / Reel / Story | |
| TikTok organic posting | |
| TikTok ad campaign | |
| Meta (Facebook / Instagram) ads | |
| Google Ads campaign | |
| Amazon Sponsored Products campaign | |
| 请求内容 | 转交至 |
|---|---|
| Instagram帖子/Reel/快拍 | |
| TikTok organic发帖 | |
| TikTok广告活动 | |
| Meta(Facebook/Instagram)广告 | |
| Google Ads广告活动 | |
| Amazon Sponsored Products广告活动 | |
Requirements
前提条件
- Hyper MCP installed and connected. https://app.hyperfx.ai/mcp
- LinkedIn integration connected at https://app.hyperfx.ai/integrations.
- For company-page posts, the connected member account must have permission to post for that organization.
If is not in the tool list, stop and tell the user to enable Hyper MCP and connect LinkedIn.
linkedin_create_text_post- 已安装并连接Hyper MCP。https://app.hyperfx.ai/mcp
- 已连接LinkedIn集成,访问https://app.hyperfx.ai/integrations完成连接。
- 若发布到公司主页,关联的会员账号必须拥有该企业的发帖权限。
如果工具列表中没有,请停止操作并告知用户启用Hyper MCP并连接LinkedIn。
linkedin_create_text_postTool surface
工具说明
| Tool | Purpose |
|---|---|
| Standard member or organization text post; also article / link posts via the article fields. |
| Post explicitly as a company page (when you already know |
| PDF / document post — LinkedIn renders pages as a swipeable document. |
| AI text-to-carousel pipeline — generates slides + assembles a PDF + publishes as a document post. |
| 工具 | 用途 |
|---|---|
| 标准个人或企业文字帖;也可通过文章字段发布文章/链接帖。 |
| 明确以公司主页身份发帖(当已知 |
| PDF/文档帖 — LinkedIn会将页面渲染为可滑动的文档形式。 |
| AI文本转轮播帖流程 — 生成幻灯片并组装为PDF,再发布为文档帖。 |
Posting Rules
发帖规则
- Use for standard member or organization posts.
linkedin_create_text_post - Use when the user explicitly wants to post as a company page and you already know the
linkedin_create_organization_post.organization_id - Use for PDF / document uploads. LinkedIn renders PDF pages as a swipeable document post.
linkedin_create_document_post - Use when the user wants a text-to-carousel workflow driven by AI-generated slides.
linkedin_create_carousel_from_text
- 使用发布标准个人或企业帖。
linkedin_create_text_post - 当用户明确要求以公司主页身份发帖且已知时,使用
organization_id。linkedin_create_organization_post - 使用上传PDF/文档。LinkedIn会将PDF页面渲染为可滑动的文档帖。
linkedin_create_document_post - 当用户需要由AI生成幻灯片驱动的文本转轮播帖流程时,使用。
linkedin_create_carousel_from_text
Article / Link Posts
文章/链接帖
Do not rely on LinkedIn to scrape Open Graph metadata for API-created posts.
For reliable article posts:
- Provide .
article_url - Prefer explicit ,
article_title, andarticle_description.thumbnail_url - If those fields are omitted, the backend may derive them from the shared page metadata, but explicit values are still more reliable.
Use this shape when editing or preparing a LinkedIn article post:
python
linkedin_create_text_post(
text="Caption text",
article_url="https://example.com/article",
article_title="Explicit preview title",
article_description="Explicit preview description",
thumbnail_url="https://example.com/thumbnail.jpg",
organization_id="123456789", # optional
)不要依赖LinkedIn为API创建的帖子抓取Open Graph元数据。
如需可靠发布文章帖:
- 提供。
article_url - 优先使用明确的、
article_title和article_description。thumbnail_url - 如果省略这些字段,后端可能会从共享页面的元数据中推导,但明确值仍更可靠。
编辑或准备LinkedIn文章帖时,请使用以下格式:
python
linkedin_create_text_post(
text="Caption text",
article_url="https://example.com/article",
article_title="Explicit preview title",
article_description="Explicit preview description",
thumbnail_url="https://example.com/thumbnail.jpg",
organization_id="123456789", # optional
)Document and Carousel Posts
文档帖与轮播帖
LinkedIn carousels are implemented as document posts backed by a PDF.
LinkedIn轮播帖是以PDF为支撑的文档帖实现的。
Native PDF flow
原生PDF流程
Use when you already have a PDF URL or stored file ID:
linkedin_create_document_postpython
linkedin_create_document_post(
text="Caption text",
title="Deck title",
document_url="https://example.com/deck.pdf",
organization_id="123456789", # optional
)当已有PDF URL或存储文件ID时,使用:
linkedin_create_document_postpython
linkedin_create_document_post(
text="Caption text",
title="Deck title",
document_url="https://example.com/deck.pdf",
organization_id="123456789", # optional
)Text-to-carousel flow
文本转轮播帖流程
Use when the user wants the system to build the carousel from a block of source text:
linkedin_create_carousel_from_textpython
linkedin_create_carousel_from_text(
text_content="Source content for the slides",
title="Carousel title",
caption="LinkedIn caption",
num_slides=4,
style="professional",
color_scheme="blue",
organization_id="123456789", # optional
)The current implementation:
- Parses the source text into slide content.
- Generates a single grid image with an image model.
- Splits the grid into individual slide images.
- Assembles a PDF.
- Publishes the PDF as a LinkedIn document post.
- Returns the live post URL — present this to the user to confirm the carousel is live.
Supported slide counts are , , and .
469当用户希望系统根据一段源文本生成轮播帖时,使用:
linkedin_create_carousel_from_textpython
linkedin_create_carousel_from_text(
text_content="Source content for the slides",
title="Carousel title",
caption="LinkedIn caption",
num_slides=4,
style="professional",
color_scheme="blue",
organization_id="123456789", # optional
)当前实现流程:
- 将源文本解析为幻灯片内容。
- 利用图像模型生成单张网格图像。
- 将网格分割为独立的幻灯片图像。
- 组装为PDF。
- 将PDF发布为LinkedIn文档帖。
- 返回实时帖子链接 — 展示给用户以确认轮播帖已发布。
支持的幻灯片数量为、和。
469Manual Slide Editing
手动幻灯片编辑
The current LinkedIn carousel pipeline is PDF-based. It does not provide a first-class live canvas editing loop before publish.
If a user wants manual refinement:
- Generate the carousel assets first.
- Review or edit the generated slide images / PDF externally.
- Post the final PDF with .
linkedin_create_document_post
Do not promise an in-product editable canvas workflow unless the tool is actually available in the current environment.
当前LinkedIn轮播帖流程基于PDF,发布前不提供一流的实时画布编辑环节。
如果用户需要手动优化:
- 先生成轮播帖资源。
- 在外部查看或编辑生成的幻灯片图像/PDF。
- 使用发布最终的PDF。
linkedin_create_document_post
除非当前环境中确实提供该工具,否则不要承诺产品内的可编辑画布流程。
Organization Posting
企业主页发帖
When posting to a company page:
- If you don't know the , call
organization_idfirst — it returns all company pages the connected account can post to, with their IDs.linkedin_get_my_managed_pages() - Use to preview recent posts before publishing — avoids accidental duplicates.
linkedin_get_organization_posts_detailed(organization_id=...) - Pass to whichever posting tool you're using.
organization_id - Expect LinkedIn org posting permissions to matter.
- If a post fails with a permissions error, verify that the authenticated account can post to that organization.
发布到公司主页时:
- 如果不知道,先调用
organization_id— 它会返回关联账号可发帖的所有公司主页及其ID。linkedin_get_my_managed_pages() - 发布前使用预览近期帖子 — 避免意外重复发帖。
linkedin_get_organization_posts_detailed(organization_id=...) - 将传递给所使用的发帖工具。
organization_id - 请注意LinkedIn企业发帖权限的要求。
- 如果发帖因权限错误失败,请验证认证账号是否拥有该目标的发帖权限。
organization_id
Failure Modes & Recovery
故障模式与恢复
- Article preview is empty / wrong. LinkedIn ignored the scraped metadata. Re-call with explicit
linkedin_create_text_post,article_title, andarticle_description.thumbnail_url - Permission error on organization post. Confirm with the user that their LinkedIn account has page-posting permission for the target .
organization_id - returned an unexpected slide count. Only
linkedin_create_carousel_from_textofnum_slides,4, or6are supported.9 - Document post fails with an invalid URL. The must be a directly-fetchable PDF (no auth, no HTML redirect page).
document_url
- 文章预览为空/错误。LinkedIgnored抓取的元数据。重新调用并传入明确的
linkedin_create_text_post、article_title和article_description。thumbnail_url - 企业主页发帖权限错误。与用户确认其LinkedIn账号是否拥有目标的主页发帖权限。
organization_id - 返回意外的幻灯片数量。仅支持
linkedin_create_carousel_from_text为num_slides、4或6。9 - 文档帖因无效URL发布失败。必须是可直接获取的PDF(无认证、无HTML重定向页面)。
document_url