Zernio MCP server
Schedule, publish, and analyze social media across 15+ platforms, plus inbox, ads, and analytics.
11 stars
Reviews
Write oneNobody has reviewed Zernio yet.
If you have run it, two minutes of your experience saves the next person an afternoon.
Zernio tools
Tool list not cached yet. `describe` through the gateway fetches it live.
Public scan report
scanner v0.1.9 · 2026-09-27 · same rubric, same numbers if you re-run it
- –Code scanremote-only server, no package to scann/a
- Live reliabilityremote reachable in 129ms (auth required)20/20
- –Tool poisoningtools not inspected (endpoint requires auth); not countedn/a
- Auth qualityOAuth resource metadata advertised on 40115/15
- Maintenancelast push 0 days ago15/15
- Maintainer identitynamespace and repository owner differ4/10
What the publisher says
From the Zernio repository's README, as published. We do not edit it. Read it on GitHub
Zernio Python SDK
One API to post everywhere. 16 platforms, zero headaches.
The official Python SDK for the Zernio API — schedule and publish social media posts across Instagram, TikTok, YouTube, LinkedIn, X/Twitter, Facebook, Pinterest, Threads, Bluesky, Reddit, Snapchat, Telegram, WhatsApp, and Google Business Profile with a single integration.
Installation
pip install zernio-sdkQuick Start
from zernio import Zernio
# Reads ZERNIO_API_KEY from environment (or pass explicitly)
client = Zernio()
# Publish to multiple platforms with one call
post = client.posts.create(
content="Hello world from Zernio!",
platforms=[
{"platform": "twitter", "accountId": "acc_xxx"},
{"platform": "linkedin", "accountId": "acc_yyy"},
{"platform": "instagram", "accountId": "acc_zzz"},
],
publish_now=True,
)
print(f"Published to {len(post['post']['platforms'])} platforms!")Configuration
client = Zernio(
api_key="your-api-key", # Or set ZERNIO_API_KEY env var
base_url="https://zernio.com/api", # Optional, this is the default
timeout=30.0, # Optional, request timeout in seconds
)Examples
Schedule a Post
post = client.posts.create(
content="This post will go live tomorrow at 10am",
platforms=[{"platform": "instagram", "accountId": "acc_xxx"}],
scheduled_for="2025-02-01T10:00:00Z",
)Platform-Specific Content
Customize content per platform while posting to all at once:
post = client.posts.create(
content="Default content",
platforms=[
{
"platform": "twitter",
"accountId": "acc_twitter",
"platformSpecificContent": "Short & punchy for X",
},
{
"platform": "linkedin",
"accountId": "acc_linkedin",
"platformSpecificContent": "Professional tone for LinkedIn with more detail.",
},
],
publish_now=True,
)Upload Media
# Option 1: Direct upload (simplest)
result = client.media.upload("path/to/video.mp4")
media_url = result["publicUrl"]
# Option 2: Upload from bytes
result = client.media.upload_bytes(video_bytes, "video.mp4", "video/mp4")
media_url = result["publicUrl"]
# Create post with media
post = client.posts.create(
content="Check out this video!",
media_urls=[media_url],
platforms=[
{"platform": "tiktok", "accountId": "acc_xxx"},
{"platform": "youtube", "accountId": "acc_yyy", "youtubeTitle": "My Video"},
],
publish_now=True,
)Get Analytics
data = client.analytics.get(period="30d")
print("Analytics:", data)List Connected Accounts
data = client.accounts.list()
for account in data["accounts"]:
print(f"{account['platform']}: @{account['username']}")Async Support
import asyncio
from zernio import Zernio
async def main():
async with Zernio(api_key="your-api-key") as client:
posts = await client.posts.alist(status="scheduled")
print(f"Found {len(posts['posts'])} scheduled posts")
asyncio.run(main())Error Handling
from zernio import Zernio, ZernioAPIError, ZernioRateLimitError, ZernioValidationError
client = Zernio(api_key="your-api-key")Shortened. The full README is on GitHub.
Nothing above is checked by us. What we check is on the safety report.
Install directly
claude mcp add --transport http zernio https://mcp.zernio.com/mcp
Zernio: common questions
- Is Zernio MCP server safe?
- Yes, by our scan: it is graded A (90/100). Read the Zernio safety report
- How do I install Zernio?
- It runs remotely at mcp.zernio.com. Add it to Claude Code, Claude Desktop or Cursor with the snippets above, or call it through the mcp.market gateway without installing anything.
- Does Zernio need an API key?
- No key to paste: it signs you in with OAuth when your client connects.
- Is Zernio maintained?
- The last commit was in the last day (2026-09-27). The latest release is v1.0.0.
- Is Zernio up?
- 100% of our last 28 checks got an answer. We check remote servers about four times a day.
- What can I use instead of Zernio?
- Servers from other publishers that do the same job: Emailens MCP server, Multi-Account Gmail MCP server and Atomic Mail MCP server. Compare all Zernio alternatives.
Alternatives to Zernio
Same job from other publishers: the closest match first, then the best rated.
- Emailens MCPAnalyze, audit, fix and diff HTML, MJML, Maizzle and React Email across 21 email clients.not reviewedGrowingA
- Multi-Account GmailMulti-account Gmail MCP server — read, search, draft, and label across every inbox.not reviewedGrowingA
- Atomic MailProgrammable email inbox for AI agents — JMAP, PoW auth, stdio MCP server.not reviewedEstablishedA
- Email Inbox API + Sending by SendmuxAI email inbox and sending tools with attachments, search, live events, and webhooks.not reviewedEstablishedA
- three.ws NotificationsRead the inbox, mark items read, manage delivery preferences, and register Web Push devices.not reviewedEstablishedB