Canlah Skills Radar
Calliope · 内容运营总监

Zernio

eyalm321/zernio-mcp
✓ I/O · 274认领这个员工

Provides access to the Zernio social media management API through 273 MCP tools spanning content posting, analytics, inbox and comment management, advertising campaigns, contacts, WhatsApp Business features, webhooks, and automation. Supports 14+ platforms including Twitter/X, Instagram, Facebook, LinkedIn, TikTok, YouTube, and Reddit. Authenticated via API keys from the Zernio settings dashboard.

该 server 含写操作工具 (zernio_delete_messenger_menu, zernio_delete_telegram_commands, zernio_delete_instagram_ice_breakers) — 接入你自己的账号前,先确认它的授权范围。

真实 I/O · 已连通 ✓

启动 server · tools/list · 274 个工具 · zernio-mcp

下面每个工具的字段、类型、必填项,都是我们真的把 server 启动、tools/list 拉回来的原始 JSON Schema —— 真实的工具契约。注意:下方「示例调用」是按 schema 自动生成的演示,不是真实调用的返回。

zernio_list_accounts

List all connected social media accounts in Zernio with their platform, username, follower count, and account ID.

Input(真实 schema)
platformstring
Filter by platform: facebook, instagram, tiktok, twitter, youtube, googlebusiness, linkedin, etc.
示例调用
{
  "tool": "zernio_list_accounts",
  "arguments": {
    "platform": "…"
  }
}
zernio_get_follower_stats

Get follower count and basic stats for a specific connected account.

Input(真实 schema)
accountIdstringrequired
The Zernio account ID
示例调用
{
  "tool": "zernio_get_follower_stats",
  "arguments": {
    "accountId": "…"
  }
}
zernio_get_account_health

Check the health/connection status of a social account -- whether its auth token is still valid and connected.

Input(真实 schema)
accountIdstring
Specific account ID to check (omit to check all accounts)
示例调用
{
  "tool": "zernio_get_account_health",
  "arguments": {
    "accountId": "…"
  }
}
zernio_get_linkedin_mentions

Get LinkedIn mentions -- posts and comments where your LinkedIn page was tagged or mentioned.

Input(真实 schema)
accountIdstringrequired
The Zernio LinkedIn account ID
dateFromstring
Start date (ISO format)
dateTostring
End date (ISO format)
示例调用
{
  "tool": "zernio_get_linkedin_mentions",
  "arguments": {
    "accountId": "…"
  }
}
zernio_get_facebook_page

Get the Facebook Page details linked to a connected Facebook account.

Input(真实 schema)
accountIdstringrequired
The Zernio Facebook account ID
示例调用
{
  "tool": "zernio_get_facebook_page",
  "arguments": {
    "accountId": "…"
  }
}
zernio_get_linkedin_organizations

Get LinkedIn organization pages linked to a connected LinkedIn account (for posting as a company page).

Input(真实 schema)
accountIdstringrequired
The Zernio LinkedIn account ID
示例调用
{
  "tool": "zernio_get_linkedin_organizations",
  "arguments": {
    "accountId": "…"
  }
}
zernio_get_reddit_flairs

Get available post flairs for a subreddit -- required for posting to subreddits that mandate flairs.

Input(真实 schema)
accountIdstringrequired
The Zernio Reddit account ID
subredditstringrequired
The subreddit name (without r/)
示例调用
{
  "tool": "zernio_get_reddit_flairs",
  "arguments": {
    "accountId": "…",
    "subreddit": "…"
  }
}
zernio_get_gmb_locations

Get Google My Business locations linked to a connected Google Business account.

Input(真实 schema)
accountIdstringrequired
The Zernio Google Business account ID
示例调用
{
  "tool": "zernio_get_gmb_locations",
  "arguments": {
    "accountId": "…"
  }
}
zernio_get_pinterest_boards

Get Pinterest boards for a connected Pinterest account -- needed for pinning posts to specific boards.

Input(真实 schema)
accountIdstringrequired
The Zernio Pinterest account ID
示例调用
{
  "tool": "zernio_get_pinterest_boards",
  "arguments": {
    "accountId": "…"
  }
}
zernio_get_youtube_playlists

Get YouTube playlists for a connected YouTube account -- needed for uploading videos to specific playlists.

Input(真实 schema)
accountIdstringrequired
The Zernio YouTube account ID
示例调用
{
  "tool": "zernio_get_youtube_playlists",
  "arguments": {
    "accountId": "…"
  }
}
zernio_get_tiktok_creator_info

Get TikTok creator info for a connected TikTok account -- includes privacy settings and post limits.

Input(真实 schema)
accountIdstringrequired
The Zernio TikTok account ID
示例调用
{
  "tool": "zernio_get_tiktok_creator_info",
  "arguments": {
    "accountId": "…"
  }
}
zernio_get_messenger_menu

Get the Facebook Messenger persistent menu configured for a connected Facebook account.

Input(真实 schema)
accountIdstringrequired
The Zernio Facebook account ID
示例调用
{
  "tool": "zernio_get_messenger_menu",
  "arguments": {
    "accountId": "…"
  }
}
zernio_set_messenger_menu

Set or update the Facebook Messenger persistent menu -- the quick-action buttons shown in your Messenger chat.

Input(真实 schema)
accountIdstringrequired
The Zernio Facebook account ID
menuItemsarrayrequired
Menu items to show in the Messenger persistent menu
示例调用
{
  "tool": "zernio_set_messenger_menu",
  "arguments": {
    "accountId": "…",
    "menuItems": []
  }
}
zernio_delete_messenger_menu

Remove the Facebook Messenger persistent menu from a connected Facebook account.

Input(真实 schema)
accountIdstringrequired
The Zernio Facebook account ID
示例调用
{
  "tool": "zernio_delete_messenger_menu",
  "arguments": {
    "accountId": "…"
  }
}
zernio_get_telegram_commands

Get the bot commands configured for a connected Telegram bot account.

Input(真实 schema)
accountIdstringrequired
The Zernio Telegram account ID
示例调用
{
  "tool": "zernio_get_telegram_commands",
  "arguments": {
    "accountId": "…"
  }
}
zernio_set_telegram_commands

Set bot commands for a connected Telegram bot (the /command list shown to users).

Input(真实 schema)
accountIdstringrequired
The Zernio Telegram account ID
commandsarrayrequired
List of bot commands to register
示例调用
{
  "tool": "zernio_set_telegram_commands",
  "arguments": {
    "accountId": "…",
    "commands": []
  }
}
zernio_delete_telegram_commands

Remove all bot commands from a connected Telegram bot account.

Input(真实 schema)
accountIdstringrequired
The Zernio Telegram account ID
示例调用
{
  "tool": "zernio_delete_telegram_commands",
  "arguments": {
    "accountId": "…"
  }
}
zernio_get_instagram_ice_breakers

Get the Instagram DM ice breaker questions configured for a connected Instagram account.

Input(真实 schema)
accountIdstringrequired
The Zernio Instagram account ID
示例调用
{
  "tool": "zernio_get_instagram_ice_breakers",
  "arguments": {
    "accountId": "…"
  }
}
zernio_set_instagram_ice_breakers

Set Instagram DM ice breaker questions -- suggested questions shown to users who start a new DM conversation.

Input(真实 schema)
accountIdstringrequired
The Zernio Instagram account ID
iceBreakersarrayrequired
Ice breaker questions (max 4)
示例调用
{
  "tool": "zernio_set_instagram_ice_breakers",
  "arguments": {
    "accountId": "…",
    "iceBreakers": []
  }
}
zernio_delete_instagram_ice_breakers

Remove all Instagram DM ice breaker questions from a connected Instagram account.

Input(真实 schema)
accountIdstringrequired
The Zernio Instagram account ID
示例调用
{
  "tool": "zernio_delete_instagram_ice_breakers",
  "arguments": {
    "accountId": "…"
  }
}

共 274 个工具,此处展示前 20 个。

综合分

Canlah Score27
归属岗位Calliope · 内容运营总监
岗位分值×1.00
★ Stars6
↓ 下载量479
工具数(实测)274
npm 包zernio-mcp
✓ 已连通:字段来自真实的 tools/list(工具清单)。工具本身尚未真实调用。

效果测评卡

进行中 · 待运行
任务成功率
输出质量 (LLM 评审)
延迟
成本 / token
稳定性

真实 I/O 已解决「输入输出是什么」;下一步接 agent 真跑,量化「效果好不好」。

取用 / 安装

npx -y zernio-mcp
同岗位其他 skill
MyMCPSpace
glifxyz/mymcpspace-mcp-server
✓ I/O · 5

A Model Context Protocol server that provides AI assistants with access to MyMCPSpace, a social media platform designed for AI interaction. Developed by glifxyz, this TypeScript implementation enables creating posts, replying to existing content, toggling likes, retrieving feed data, and updating usernames through a set of well-defined tools. The server authenticates with the MyMCPSpace API using a bearer token and handles all communication with the platform's endpoints, making it particularly useful for AI agents that need to participate in social media conversations, share content, or monitor discussions on this AI-native platform.

Calliope155.8k
37
CaptAPI
cdcstream/captapi
✓ I/O · 85

CaptAPI provides structured data extraction from four major social media platforms — YouTube, TikTok, Instagram, and Facebook — through 62 unified MCP tools. It covers transcripts, summaries, comments, engagement metrics, and profile analytics without requiring platform-specific OAuth or API keys. A single CaptAPI key grants access to all endpoints, making it straightforward to integrate social media data into AI workflows.

Calliope362
20
Post for Me
helbertparanhos/postforme-mcp-pro
✓ I/O · 27

Post for Me integration enables AI agents to publish content, schedule posts, and retrieve analytics across 9 social media platforms through the Post for Me API. Supports write-only and read-only modes for controlled access to social publishing workflows.

Calliope275
19