Start here
Standard
For one team running a handful of projects.
per month
Charged every month. Cancel from Settings at any time.
3 active projects
Every feature, on every tier
Connect Claude Code, Codex, Hermes or any MCP client to the Post Array MCP server and it can draft, check platform limits and schedule posts. Not using an agent? The web app, a REST API, a CLI and signed webhooks do the same work.
Free to start. No card. Your first published posts are on us.
Networks in the launch cohort
Availability is shown account by account as each platform completes its review.
Post Array 是一個出版台,專為那些對所發布的內容負責的人而設計。您編寫一次,根據平台進行調整,在安排之前查看真正的限制,獲得所需的核准,透過官方平台 API 發布,並為每個貼文保留收據。
一個帳號經營多個業務。每個專案都是獨立的業務,有自己連結的帳號、自己的行事曆和自己的核准流程;你在同一個選單中切換它們,就像在搜尋主控台中切換資源一樣。
示範
建立專案
專案
Northbound Tools(範例)
時區:中歐夏令時間 (GMT+2)
草稿、帳號、核准與收據都只屬於此專案,不屬於其他任何地方。
連線帳號
此專案中的帳號
每一列都會顯示權杖健康狀態、已授予的權限,以及最後一次成功發布的貼文。目前這些帳號都無法發布。
一次撰寫
主要草稿
Northbound 2.4 今日推出。匯入速度更快,搜尋新增了鍵盤快捷鍵,兩位使用者回報的匯出錯誤也已修復。
位於專案 Northbound Tools(範例)
依平台調整
每個帳號收到的內容
X, @northbound
Northbound 2.4 已推出。匯入速度更快、支援鍵盤搜尋,該匯出錯誤也已修復。
字元數與串文順序
LinkedIn, Northbound Tools
Northbound 2.4 今日推出。發布說明完整解釋了匯入的變更與匯出的修復內容。
組織角色與貼文長度
Instagram, @northbound.tools
同一張發布圖片,搭配為動態消息撰寫的文案,以及由真人撰寫的替代文字。
帳號類型、長寬比與替代文字
檢查它
排程前的檢查
這些檢查會在任何內容被排程之前於撰寫工具中執行,並在任何內容送出之前再次執行。
指定一個時間
已排程
中歐夏令時間 (GMT+2) 的 2026年9月15日 星期二 上午9:15
在任何內容可以送出之前,都需要一次核准。
佇列是另一條路徑:它會依此時區內你設定規則所允許的下一個時段來選取。
查看這一週
這一週
星期一
尚無已排程項目
星期二
上午9:15X, @northbound
下午1:00LinkedIn, Northbound Tools
星期三
下午5:30Instagram, @northbound.tools
星期四
尚無已排程項目
星期五
尚無已排程項目
行事曆上相同的三則貼文,以專案時區判讀。
發布並記錄
發布及其紀錄
由 Ravi,範例審閱者 核准
已進入佇列等候其時段
已送至平台
已由平台確認
最後兩個步驟是由發布執行程序寫入。尚無任何連接器完成供應商驗證,因此這兩步仍在等待中,外部貼文 ID 與永久連結也仍無法使用。
閱讀摘要
你的這一週,以句子呈現
範例
當你的貼文發布後,即時分析數據會顯示在這裡。
作曲家從主版本開始。選擇帳號將僅開啟該帳號的覆蓋,具有自己的即時限制和自己的預覽。你為 LinkedIn 所寫的任何內容都不會改變 X 收到的內容。
Master draft
主文本,已縮短,加上兩個貼文主題
附有文件的較長主文本
The same image selected, with a caption rewritten for the feed
與短片相同的剪輯,有自己的標題和說明
帶有連結卡的母版文本
說明性的構圖。顯示的限制和設定來自每個平台的連接器定義,而不是估計。
相同的用例、相同的租賃檢查、相同的驗證器和相同的發布工作流程。表面是一條路,而不是超越規則的捷徑。
Surfaces on one shared backend
Composer、日曆、核准、分析、連接和設定。
可串流傳輸 HTTP、OAuth、每個工具範圍以及每次後續呼叫之前的預覽。
作用域鍵、每次寫入時的冪等鍵、遊標分頁、鍵入錯誤。
用於腳本和持續整合的穩定的機器可讀輸出。
發布結果、核准決定和連接運行狀況,並重新交付。
The MCP server is a resource server in front of the same application services the web app uses. It holds no publishing logic and no second permission system, so an agent cannot reach anything you have not granted it, and it cannot route around an approval by using a different surface.
Create a credential in Post Array, then paste the workspace MCP endpoint into your client. The credential is read from an environment variable rather than written into the file, because a config committed to a repository is the most common way one leaks.
Post Array compares the token audience against this server as an exact string, never a prefix, and re-verifies the grant on every call. A revoked grant stops working in the middle of a long lived agent session.
It lists the accounts you connected, reads the live platform limits for each one, and drafts against those rather than against a guess. Account ids are resolved on the server, so a raw handle is never accepted.
{
"mcpServers": {
"postarray": {
"type": "http",
"url": "https://mcp.relay.example/mcp",
"headers": {
"Authorization": "Bearer ${POSTARRAY_SERVICE_TOKEN}"
}
}
}
}The Claude Code block, with your own endpoint in place of the example.
Reviewed setups ship for these clients
Any MCP client that speaks Streamable HTTP over TLS can connect. There are no unauthenticated tools, not even read ones.
Every tool declares its risk, its scopes and its approval level as data, and the description a client shows is generated from that declaration. A tool whose description disagrees with what is enforced is worse than no description, so the two cannot disagree.
Nothing changes. Each one answers with a bounded page and a link, so a calendar of ten thousand entries comes back as ten and a cursor instead of filling the context window.
Changes something inside Post Array and publishes nothing. A draft sits in the workspace until a person, or a grant you gave for scheduling, moves it forward.
Reaches a platform. Each one requires an idempotency key, rejected rather than defaulted, so an agent retrying in a loop cannot post the same thing twice.
Asking an agent to publish immediately does not publish. Post Array mints a pending confirmation bound to the workspace, the grant, the post and a fingerprint of the exact accounts, and hands back a link on the Post Array domain. You open it in your own session, see what will go out and where, and approve. Change the post afterwards and the fingerprint changes with it, which voids the approval.
將一個來源創意轉化為平台原生內容,核准一次,可靠地發布,並了解下一步需要改進的內容。
每個帳號的真實預覽、確定性策略和平台在任何內容排隊之前進行檢查、Workspace所需的核准、帶有外部貼文 ID 的不可變收據以及每個連線的運作狀況。
每個外部寫入都帶有冪等密鑰,因此平台接受貼文後的工作線程崩潰不會創建第二個貼文。
您可以一次涵蓋一個帳號的每個平台變體,以及創譯而不是直譯,並帶有專案術語表和每種語言的指定審查員。
此介面有選定的語言版本。內容改編涵蓋20種內容語言,每種內容在發布前都會經過審核。
為指標命名的分析、報告該指標的平台、分母以及上次刷新時間。如果平台沒有報告某些內容,Post Array 會這樣表示,而不是顯示零。
貼文會與您自己的中位數進行比較,而不是與無人可以審核的分數進行比較。
Web 應用程式、REST API、遠端 MCP 伺服器、CLI 和簽署的 Webhook 呼叫相同的應用程式服務、相同的授權規則和相同的驗證器。
代理無法透過使用不同的表面來繞過核准策略,因為該策略是在服務中而不是在介面中強制執行的。
One price, every shipped feature, 10 active channels and an owner plus 5 teammates. Platform usage that a provider charges per operation is passed through at cost and shown before you confirm the action.
There is no image or video generation credit system, because Post Array does not generate media.
這些是邊界,而不是路線圖。如果其中之一發生更改,它會首先在更改日誌中更改。
No AI image generation and no AI video generation. Post Array adapts, approves, publishes and measures the media you bring.
不會自動按讚、追蹤、轉發、主動回覆或直接訊息。沒有訂婚艙,也沒有捏造的訂婚。
沒有瀏覽器自動化,沒有 cookie 重播,沒有抓取,也沒有非官方發布端點。僅限官方平台 API。
不承諾覆蓋範圍、排名或參與度。 Post Array 可以告訴您發生了什麼事以及接下來要測試什麼。它無法告訴你觀眾會做什麼。
預設沒有無人值守發布。代理人可以起草、驗證和請求核准。除非您故意選擇退出特定政策,否則人類會在任何事情公開之前做出決定。
連接一個帳號,起草一篇文章,觀察驗證運行,安排驗證並閱讀收據。這就是大約十分鐘內的整個產品。
Post Array costs $25 a month, or $250 a year, which is two months free. Starting is free and takes no card: connect your accounts, schedule as much as you like, and your first published posts are on us. Connector availability is shown account by account as each platform completes its review.