linkedin

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

LinkedIn

LinkedIn

Skill 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处理

RequestSend them to
Instagram post / Reel / Story
instagram
TikTok organic posting
tiktok
TikTok ad campaign
tiktok-ads
Meta (Facebook / Instagram) ads
meta-ads
Google Ads campaign
google-ads
Amazon Sponsored Products campaign
amazon-ads
请求内容转交至
Instagram帖子/Reel/快拍
instagram
TikTok organic发帖
tiktok
TikTok广告活动
tiktok-ads
Meta(Facebook/Instagram)广告
meta-ads
Google Ads广告活动
google-ads
Amazon Sponsored Products广告活动
amazon-ads

Requirements

前提条件

If
linkedin_create_text_post
is not in the tool list, stop and tell the user to enable Hyper MCP and connect LinkedIn.
如果工具列表中没有
linkedin_create_text_post
,请停止操作并告知用户启用Hyper MCP并连接LinkedIn。

Tool surface

工具说明

ToolPurpose
linkedin_create_text_post
Standard member or organization text post; also article / link posts via the article fields.
linkedin_create_organization_post
Post explicitly as a company page (when you already know
organization_id
).
linkedin_create_document_post
PDF / document post — LinkedIn renders pages as a swipeable document.
linkedin_create_carousel_from_text
AI text-to-carousel pipeline — generates slides + assembles a PDF + publishes as a document post.
工具用途
linkedin_create_text_post
标准个人或企业文字帖;也可通过文章字段发布文章/链接帖。
linkedin_create_organization_post
明确以公司主页身份发帖(当已知
organization_id
时使用)。
linkedin_create_document_post
PDF/文档帖 — LinkedIn会将页面渲染为可滑动的文档形式。
linkedin_create_carousel_from_text
AI文本转轮播帖流程 — 生成幻灯片并组装为PDF,再发布为文档帖。

Posting Rules

发帖规则

  1. Use
    linkedin_create_text_post
    for standard member or organization posts.
  2. Use
    linkedin_create_organization_post
    when the user explicitly wants to post as a company page and you already know the
    organization_id
    .
  3. Use
    linkedin_create_document_post
    for PDF / document uploads. LinkedIn renders PDF pages as a swipeable document post.
  4. Use
    linkedin_create_carousel_from_text
    when the user wants a text-to-carousel workflow driven by AI-generated slides.
  1. 使用
    linkedin_create_text_post
    发布标准个人或企业帖。
  2. 当用户明确要求以公司主页身份发帖已知
    organization_id
    时,使用
    linkedin_create_organization_post
  3. 使用
    linkedin_create_document_post
    上传PDF/文档。LinkedIn会将PDF页面渲染为可滑动的文档帖。
  4. 当用户需要由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
    ,
    article_description
    , and
    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
linkedin_create_document_post
when you already have a PDF URL or stored file ID:
python
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_post
python
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
linkedin_create_carousel_from_text
when the user wants the system to build the carousel from a block of source text:
python
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
4
,
6
, and
9
.
当用户希望系统根据一段源文本生成轮播帖时,使用
linkedin_create_carousel_from_text
python
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文档帖。
  • 返回实时帖子链接 — 展示给用户以确认轮播帖已发布。
支持的幻灯片数量为
4
6
9

Manual 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:
  1. Generate the carousel assets first.
  2. Review or edit the generated slide images / PDF externally.
  3. 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,发布前不提供一流的实时画布编辑环节。
如果用户需要手动优化:
  1. 先生成轮播帖资源。
  2. 在外部查看或编辑生成的幻灯片图像/PDF。
  3. 使用
    linkedin_create_document_post
    发布最终的PDF。
除非当前环境中确实提供该工具,否则不要承诺产品内的可编辑画布流程。

Organization Posting

企业主页发帖

When posting to a company page:
  • If you don't know the
    organization_id
    , call
    linkedin_get_my_managed_pages()
    first — it returns all company pages the connected account can post to, with their IDs.
  • Use
    linkedin_get_organization_posts_detailed(organization_id=...)
    to preview recent posts before publishing — avoids accidental duplicates.
  • Pass
    organization_id
    to whichever posting tool you're using.
  • 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
    ,先调用
    linkedin_get_my_managed_pages()
    — 它会返回关联账号可发帖的所有公司主页及其ID。
  • 发布前使用
    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
    linkedin_create_text_post
    with explicit
    article_title
    ,
    article_description
    , and
    thumbnail_url
    .
  • Permission error on organization post. Confirm with the user that their LinkedIn account has page-posting permission for the target
    organization_id
    .
  • linkedin_create_carousel_from_text
    returned an unexpected slide count.
    Only
    num_slides
    of
    4
    ,
    6
    , or
    9
    are supported.
  • Document post fails with an invalid URL. The
    document_url
    must be a directly-fetchable PDF (no auth, no HTML redirect page).
  • 文章预览为空/错误。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发布失败
    document_url
    必须是可直接获取的PDF(无认证、无HTML重定向页面)。