# Publora (remote · mcp.publora.com)

Schedule and publish to 10 social platforms: LinkedIn, X, Instagram, TikTok, YouTube, and more.

- Trust score: 80/100 (high trust)
- Change this week: +8
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- remote · `mcp.publora.com`: 80/100 (this document), [markdown](https://verifymcp.io/servers/com-publora-mcp-server/mcp.md), [page](https://verifymcp.io/servers/com-publora-mcp-server/mcp)

## Channel facts

- Endpoint: `https://mcp.publora.com/mcp`
- Transports: `streamable-http`
- Auth: `required`
- Version: `1.1.0`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Endpoint Security**: 94/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation is enforced on tool calls, advertised via RFC 9728 protected-resource metadata. Discovery is public, which costs nothing: no tool can be invoked without a token.
  - HTTPS is enforced; there's no plaintext access path.
  - The HSTS (Strict-Transport-Security) header is present.
  - DNSSEC check failed: this domain isn't protected by DNSSEC.
  - The authorisation server offers only Dynamic Client Registration (RFC 7591), which MCP 2026-07-28 deprecated in favour of Client ID Metadata Documents.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 70/100
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 2243 tokens (~140/item across 16 items; 16 tools + 0 resources), over budget; trim descriptions and params.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 23/100
  - Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http com-publora-mcp-server https://mcp.publora.com/mcp
```

### Codex

```toml
[mcp_servers.com-publora-mcp-server]
url = "https://mcp.publora.com/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "com-publora-mcp-server": {
      "type": "remote",
      "url": "https://mcp.publora.com/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add com-publora-mcp-server --url https://mcp.publora.com/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  com-publora-mcp-server:
    url: "https://mcp.publora.com/mcp"
```

### Other

```json
{
  "mcpServers": {
    "com-publora-mcp-server": {
      "type": "http",
      "url": "https://mcp.publora.com/mcp"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-02 (score 80, +1)

No change was recorded against any check on this day. Stability & Change Management went from 17 to 20. That category is still filling its 30-day observation window: 5 days of observed history at the previous scan, 6 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-31 (score 79, +6)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 73, 0)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-29 (score 73, +1)

No change was recorded against any check on this day. Stability & Change Management went from 3 to 7. That category is still filling its 30-day observation window: 1 days of observed history at the previous scan, 2 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-28 (score 72, 0)

- [functional improvement] Stability: unverified → 0.03

### 2026-07-27 (score 72, +48)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-26 (score 24)

First indexed and scored.

## MCP tools (16)

### `list_connections` (~25 tokens)

List connected accounts

List all connected social media accounts (Twitter, LinkedIn, TikTok, etc.)

### `create_post` (~501 tokens)

Create post

Create a post. FASTEST for media posts: pass mediaUrls (public https URLs — Publora downloads them server-side) together with scheduledTime to create AND schedule in one call; platforms like Instagram, TikTok, YouTube require media before scheduling. Manual alternative for local files: omit scheduledTime to create a draft, upload media with get_upload_url + HTTP PUT + complete_media (once per file), then call update_post with status 'scheduled'.

Input parameters:

- `content` (string, required): Post text content
- `idempotencyKey` (string): Optional retry key. Reusing it with the identical request replays the original response without creating another post.
- `mediaUrls` (array): Optional array (max 10) of public https URLs of images/videos to attach. Downloaded and validated server-side (jpeg, png, gif, webp, tiff, avif, mp4, mov, webm; images ≤25MB, videos ≤150MB). Must be…
- `platformSettings` (object): Per-platform publishing options, keyed by platform. Example: { instagram: { coverUrl: 'https://.../cover.jpg' }, youtube: { title: 'My video', madeForKids: false }, tiktok: { viewerSetting: 'SELF_ONL…
- `platforms` (array, required): Array of platform identifiers in the exact format returned by list_connections. Each value must be the 'platformId' field copied verbatim from a connection object, e.g. ['twitter-1985855679454986200'…
- `scheduledTime` (string): Optional ISO 8601 datetime for publishing, e.g. '2025-03-01T12:00:00Z'. Omit to create a draft. Scheduling a media-requiring platform without media fails validation — pass mediaUrls in the same call…

### `get_post` (~33 tokens)

Get post

Get details of a scheduled post group and its platform-specific posts

Input parameters:

- `postGroupId` (string, required): Post group ID

### `update_post` (~362 tokens)

Update post

Edit an existing draft/scheduled post without deleting it. You may change its base content, target platforms, status, scheduled time, per-platform settings, and/or APPEND media from public https URLs via mediaUrls. Before changing platforms, call list_connections and copy each target's platformId verbatim. Published/failed posts and posts already being published are not editable. Scheduling re-validates the complete final content/media/platform state; omitting a field keeps its current value.

Input parameters:

- `content` (string): Optional replacement base post text. Updates every target without an explicit platform-specific override. An empty string is allowed for a draft; scheduling still enforces each platform's content/med…
- `idempotencyKey` (string): Optional retry key. Reusing it with the identical request prevents repeated media appends and replays the original response.
- `mediaUrls` (array): Optional array (max 10) of public https URLs of images/videos to APPEND to this post. Same rules as create_post: direct file URLs only; jpeg, png, gif, webp, tiff, avif, mp4, mov, webm; images ≤25MB,…
- `platformSettings` (object): Per-platform publishing options to merge (same shape as create_post). Unknown platforms or fields are rejected.
- `platforms` (array): Optional replacement target platform array. Call list_connections first and copy its platformId values verbatim. This replaces the whole set; [] is allowed only while the post remains a draft.
- `postGroupId` (string, required): Post group ID
- `scheduledTime` (string): New scheduled time in ISO 8601 format
- `status` (string): New status: 'draft' or 'scheduled'

### `delete_post` (~32 tokens)

Delete post

Delete a scheduled post group and all its platform-specific posts

Input parameters:

- `postGroupId` (string, required): Post group ID

### `get_upload_url` (~199 tokens)

Get media upload URL

Get a presigned S3 URL to upload a LOCAL media file (image/video) for a post. Call ONCE per file — repeat calls with the same fileName return the same mediaId instead of adding duplicate slots; use unique fileNames for different files. Next: HTTP PUT the raw bytes to uploadUrl with a Content-Type header EQUAL to the contentType passed here (the signature enforces it), then call complete_media with the mediaId. If the file is already reachable at a public URL, prefer create_post/update_post with mediaUrls — no upload steps at all.

Input parameters:

- `contentType` (string, required): MIME type, e.g. 'image/jpeg' or 'video/mp4'
- `fileName` (string, required): File name, e.g. 'photo.jpg'
- `postGroupId` (string, required): Post group ID to attach media to
- `type` (string, required): Media type: 'image' or 'video'

### `complete_media` (~85 tokens)

Complete media upload

Finalize an uploaded media file after the HTTP PUT to the presigned uploadUrl: Publora probes the bytes server-side and marks the media 'ready' for scheduling. Call once per uploaded mediaId (from get_upload_url), then schedule via update_post. Not needed for media attached via mediaUrls.

Input parameters:

- `mediaId` (string, required): MediaFile ID returned by get_upload_url

### `delete_media` (~103 tokens)

Delete media

Remove one media file from a post group — e.g. a duplicate or never-uploaded slot that blocks scheduling with MEDIA_COUNT_EXCEEDED or media-not-ready errors. Find mediaIds via get_post (its 'media' array shows status per file). Deleting media from a scheduled post demotes it to draft; re-schedule with update_post afterwards.

Input parameters:

- `mediaId` (string, required): MediaFile ID to delete (see the 'media' array in get_post)

### `prune_media_reference` (~87 tokens)

Prune media reference

Repair MEDIA_REFERENCE_MISSING by removing a stale/dangling media reference from an owned post group, even when the MediaFile row is absent or inaccessible. Use delete_media for normal existing media rows.

Input parameters:

- `mediaId` (string, required): Stale media ID reported in the MEDIA_REFERENCE_MISSING error
- `postGroupId` (string, required): Post group ID that contains the stale media reference

### `list_posts` (~185 tokens)

List posts

List scheduled/published posts with filtering by status, platform, date range

Input parameters:

- `fromDate` (string): Start date filter (ISO 8601)
- `limit` (number): Results per page (default: 20, max: 100)
- `page` (number): Page number (default: 1)
- `platform` (string): Filter by platform name, e.g. 'linkedin', 'twitter'
- `responseFormat` (string): 'detailed' (default) returns full post content; 'concise' truncates each post's content to a preview to save tokens.
- `sortBy` (string): Sort field (default: createdAt)
- `sortOrder` (string): Sort direction (default: desc)
- `status` (string): Filter by post status
- `toDate` (string): End date filter (ISO 8601)

### `linkedin_create_reaction` (~70 tokens)

LinkedIn: react to post

React to a LinkedIn post (like, praise, etc.)

Input parameters:

- `platformId` (string, required): Platform connection ID
- `postedId` (string, required): LinkedIn post URN, e.g. 'urn:li:share:123456'
- `reactionType` (string, required): Reaction type

### `linkedin_delete_reaction` (~43 tokens)

LinkedIn: remove reaction

Remove your reaction from a LinkedIn post

Input parameters:

- `platformId` (string, required): Platform connection ID
- `postedId` (string, required): LinkedIn post URN

### `linkedin_create_comment` (~196 tokens)

LinkedIn: comment on post

Post a comment on a LinkedIn post

Input parameters:

- `message` (string, required): Comment text (max 1250 characters). Supports mentions: @{urn:li:person:Dk968RHxiO|John Smith} or @{urn:li:organization:12345678|Company Name}. Person IDs must be raw native app-scoped member IDs retu…
- `parentComment` (string): Parent comment URN for nested replies
- `platformId` (string, required): Platform connection ID, e.g. 'linkedin-XxxYyy'
- `postedId` (string, required): LinkedIn post URN, e.g. 'urn:li:share:123456' or 'urn:li:ugcPost:123456'

### `linkedin_delete_comment` (~81 tokens)

LinkedIn: delete comment

Delete a comment from a LinkedIn post

Input parameters:

- `commentId` (string, required): Comment URN to delete, e.g. 'urn:li:comment:(urn:li:ugcPost:xxx,123456)'
- `platformId` (string, required): Platform connection ID
- `postedId` (string, required): LinkedIn post URN the comment belongs to

### `linkedin_create_reshare` (~134 tokens)

LinkedIn: repost/reshare a post

Reshare (repost) an existing LinkedIn post to your feed, optionally with commentary

Input parameters:

- `commentary` (string): Optional commentary shown above the reshare (max 3000 characters)
- `parent` (string, required): URN of the post to reshare, e.g. 'urn:li:share:123456' or 'urn:li:ugcPost:123456'
- `platformId` (string, required): Platform connection ID, e.g. 'linkedin-XxxYyy'
- `visibility` (string): Reshare visibility (default: PUBLIC). CONNECTIONS is only valid for personal accounts.

### `linkedin_list_mentionables` (~107 tokens)

LinkedIn: list mentionable people

List LinkedIn people captured from engagement (comments/reactions) on your connected company pages. Each entry carries the native app-scoped person id — the only id namespace LinkedIn resolves in mentions — plus a ready-to-use mention token in the form @{urn:li:person:ID|Name}. Requires a paid plan (403 UPGRADE_REQUIRED otherwise).

Input parameters:

- `limit` (integer): Max results (default 25)
- `q` (string): Name filter (substring)

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/com-publora-mcp-server/mcp#diagnostics

## Score history

- 2026-08-03: 80
- 2026-08-02: 80
- 2026-08-01: 79
- 2026-07-31: 79
- 2026-07-30: 73
- 2026-07-29: 73
- 2026-07-28: 72
- 2026-07-27: 72
- 2026-07-26: 24

## Links

- Remote endpoint: https://mcp.publora.com/mcp
- Authorisation metadata: https://mcp.publora.com/.well-known/oauth-protected-resource/mcp
- Changelog RSS feed: https://verifymcp.io/servers/com-publora-mcp-server/mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/com-publora-mcp-server/mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/com-publora-mcp-server/mcp
