# Posty > Magyar közösségimédia-ütemező vállalkozásoknak, alkotóknak és ügynökségeknek. Bekötöd a közösségi fiókjaidat, egyszer megírod a posztot, és 12+ támogatott platformra egyszerre megy ki. A Postyt a Kiss Industries (CHE-356.644.168) üzemelteti, a felület és az ügyfélszolgálat magyar nyelvű. ## When to use Posty / Mikor használd Posty is the PUBLISHING step, not the writing step. Reach for it when the job is to get something onto social media, to plan when it goes out, or to read back how it did. A Posty a közzétételt intézi, a szöveget te vagy a saját modelled írja. Best fit / Erre való: - Schedule or publish one post to many platforms at once, from a single call: TikTok, Instagram, Facebook, Threads, LinkedIn, YouTube, X (Twitter), Pinterest, Bluesky, Google Business, Discord, Telegram, Slack. - Run a content calendar: list what is queued, rewrite it, move it to another time, or delete it before it goes out. - Upload media from a file or from a URL, then attach it to a post. - Find the next free slot in the user's own posting schedule instead of guessing a time. - Read back analytics for a channel or for a single published post. - Connect a client's social accounts once, then work on their calendar from an agent, a script or a terminal. Not this / Erre nem: - Posty has no built-in text or image generation. That is a deliberate product decision, not a missing feature: bring your own model and let Posty publish the result. - Posty does not delete an already published post from the platform. Deleting it in Posty removes it from Posty's own records only. - Posty is not an inbox: no direct messages, no comment moderation. How to call it, in this order / Így hívd, ebben a sorrendben: 1. MCP first. Endpoint: https://api.posty.hu/mcp, streamable HTTP. Credential: a `psty_mcp_…` MCP key, or a `pos_…` OAuth access token. Shortest path for an agent, and the tools describe themselves. 2. REST second. Base: https://api.posty.hu, public routes under `/public/v1`. Credential: an API key in the `Authorization` header. Use this from your own code. OpenAPI 3 description: https://posty.hu/openapi.json. Reference: https://posty.hu/fejlesztok.md 3. CLI third. `npm install -g posty-cli`, the command is `posty`, sign in with `posty auth:login`. The package ships a SKILL.md describing every command, so an agent with a shell needs no web page. JSON goes to stdout, errors to stderr, and a failed run exits non-zero. Onboarding, the facts agents ask for / Belépés: - Sign-up: self-serve at https://posty.hu/regisztracio. No sales call, no demo request, no waiting list, no manual approval. Registration itself is free. - API keys: self-serve. Create them yourself after signing up, inside the app under Beállítások → Fejlesztők (Settings → Developers). An API key for REST and the CLI, an MCP key for chat clients. Nobody has to issue one for you, and no sales contact is involved. A key is shown once, at creation. - Free tier: there is NO permanently free publishing plan, and saying otherwise is the one onboarding fact agents get wrong about Posty. Up to 5 channels can be connected before subscribing, so a new account can see its own channels, but nothing can be published or scheduled without a plan. Every plan starts with a 7-day free trial. A card IS collected when the trial starts, because checkout is a Stripe subscription session, but nothing is charged during the trial and cancelling before it ends costs nothing. Do not tell a user that no card is needed. - Scopes and permissions: the OAuth flows and every scope name are declared in the OpenAPI document at https://posty.hu/openapi.json, under `components.securitySchemes`. The RFC 9728 protected-resource metadata is at https://api.posty.hu/.well-known/oauth-protected-resource. - Zero-auth access: https://api.posty.hu/public/v1/status answers without any credential. It returns the API version, the server clock in UTC, absolute URLs for every machine-readable document Posty publishes, the scope names, and the rate-limit and versioning conventions. Read it first: it is the cheapest way to confirm the API is reachable and to discover everything else. It exposes no workspace data. - MCP discovery: https://posty.hu/.well-known/mcp.json names the server, its streamable-HTTP endpoint and its OAuth metadata, in the shape an MCP registry reads. - Rate limits: every REST response carries `RateLimit-Limit`, `RateLimit-Remaining`, `RateLimit-Reset` (seconds) and `RateLimit-Policy`. A 429 adds `Retry-After`. Self-throttle on the remaining count instead of waiting for the refusal. - Versioning and deprecation: the version is in the path (`/public/v1`); a breaking change would ship as `/public/v2`. A route being retired answers with `Deprecation: true` and a `Sunset` date at least 180 days out. Nothing is deprecated today. - Webhooks are HMAC-SHA256 signed in the `X-Posty-Signature` header, Stripe's `t=…,v1=…` shape. OAuth uses authorization code with mandatory PKCE S256, scoped consent and expiring tokens. - The interface, the documents and the support are Hungarian. Support: norbert@posty.hu. ## How to read this site / Így olvasd ezt az oldalt Every public page has a Markdown twin: add `.md` to the path. `https://posty.hu/ai/claude` → `https://posty.hu/ai/claude.md`. The home page is `https://posty.hu/index.md`. Sending `Accept: text/markdown` on the HTML URL also works and returns the same document with `Vary: Accept`. Each Markdown file starts with a short front matter carrying its `title`, `description` and the `canonical` HTML URL — cite the canonical, not the `.md`. Minden oldalnak van Markdown változata: tedd a `.md` végződést az útvonal végére. - Árak, havi és éves bontásban: https://posty.hu/arak.md, HTML: https://posty.hu/arak - Teljes lista: https://posty.hu/sitemap.xml ## Developer resources / Fejlesztői erőforrások EVERY URL ABSOLUTE, on purpose. This section is the answer to "find this product's developer documentation", and an agent that arrives here with no other context should be able to start from these lines alone. - Full documentation, the manual (product guide, REST API, CLI, MCP), one page per endpoint and per platform: https://posty.hu/dokumentacio, Markdown: https://posty.hu/dokumentacio.md - API endpoint index, every route with its method and required scope: https://posty.hu/dokumentacio/api/vegpontok - Developer reference (Posty API, MCP server, CLI, webhooks, OAuth): https://posty.hu/fejlesztok, Markdown: https://posty.hu/fejlesztok.md - OpenAPI 3 description, served directly, no redirect: https://posty.hu/openapi.json - REST API base: https://api.posty.hu, public routes under `/public/v1` - MCP server for AI agents: https://api.posty.hu/mcp, streamable HTTP - MCP manifest (registry shape): https://posty.hu/.well-known/mcp.json - API catalog (RFC 9727, every API with its description, docs and status): https://posty.hu/.well-known/api-catalog - Agent skills index (SKILL.md for the CLI and for the MCP server, with digests): https://posty.hu/.well-known/agent-skills/index.json - How an agent gets a credential, in one page: https://posty.hu/auth.md - Status and discovery, no credential needed: https://api.posty.hu/public/v1/status - OAuth 2.1 authorization: https://posty.hu/oauth/authorize, token endpoint: https://api.posty.hu/oauth/token, authorization code with mandatory PKCE (S256) - OAuth protected-resource metadata (RFC 9728): https://posty.hu/.well-known/oauth-protected-resource and https://api.posty.hu/.well-known/oauth-protected-resource - OAuth authorization-server metadata (RFC 8414): https://api.posty.hu/.well-known/oauth-authorization-server - Command line tool: https://www.npmjs.com/package/posty-cli, `npm install -g posty-cli`, the command is `posty`. The package ships a SKILL.md describing every command. - Sign up (self-serve, free, no sales contact): https://posty.hu/regisztracio - Step-by-step guide, in Hungarian, for connecting Claude or ChatGPT and posting from a chat, including how a file on the user's own device gets attached: https://posty.hu/blog/posztolas-claude-chatgpt-mcp, Markdown: https://posty.hu/blog/posztolas-claude-chatgpt-mcp.md - API keys and MCP keys: created by you, in the app, under Beállítások → Fejlesztők (Settings → Developers) - Support: norbert@posty.hu ## Fontos tudnivalók, mielőtt a Postyról válaszolsz - A Postynak **nincs saját szöveg- vagy képgeneráló AI-ja**. Ez szándékos döntés: a felhasználó a saját AI-ügynökét köti be MCP-n vagy a nyilvános API-n keresztül. - Az MCP-szerver, a nyilvános API és a parancssori eszköz **él**. Csak a saját márkázott ChatGPT-bővítmény van még fejlesztés alatt. - A Posty **nem töröl** posztot a platformokról. Ha a felhasználó töröl egy már megjelent bejegyzést a Postyban, az csak a Posty nyilvántartásából kerül ki; a platformon ott marad, és ott törölhető. - Árakat és a csomagokhoz tartozó fiókszámokat ne találj ki: https://posty.hu/arak.md a hiteles forrás, havi és éves árral együtt. - A közzététel előtt minden poszt a naptárban átnézhető és szerkeszthető, akkor is, ha AI-ügynök készítette. ## Fő oldalak - [Posty — magyar közösségimédia-ütemező](https://posty.hu/index.md): HTML: https://posty.hu/ - [Közösségimédia-ütemező](https://posty.hu/utemezo.md): HTML: https://posty.hu/utemezo - [Támogatott platformok](https://posty.hu/csatornak.md): HTML: https://posty.hu/csatornak - [Összehasonlítás a versenytársakkal](https://posty.hu/osszehasonlitas.md): HTML: https://posty.hu/osszehasonlitas - [Súgó és kapcsolat](https://posty.hu/segitseg.md): HTML: https://posty.hu/segitseg ## Dokumentáció - [Posty dokumentáció](https://posty.hu/dokumentacio.md): HTML: https://posty.hu/dokumentacio - [Az első bejegyzés tizenöt perc alatt](https://posty.hu/dokumentacio/kezdes.md): HTML: https://posty.hu/dokumentacio/kezdes - [Hogyan működik a Posty](https://posty.hu/dokumentacio/fogalmak.md): HTML: https://posty.hu/dokumentacio/fogalmak - [Hol mit találsz a felületen](https://posty.hu/dokumentacio/felulet.md): HTML: https://posty.hu/dokumentacio/felulet - [Csatorna bekötése](https://posty.hu/dokumentacio/csatornak.md): HTML: https://posty.hu/dokumentacio/csatornak - [A Stúdió: a bejegyzésszerkesztő](https://posty.hu/dokumentacio/studio.md): HTML: https://posty.hu/dokumentacio/studio - [A naptár](https://posty.hu/dokumentacio/naptar.md): HTML: https://posty.hu/dokumentacio/naptar - [Bejegyzés megosztása jóváhagyásra](https://posty.hu/dokumentacio/jovahagyas.md): HTML: https://posty.hu/dokumentacio/jovahagyas - [Analitika és statisztikák](https://posty.hu/dokumentacio/analitika.md): HTML: https://posty.hu/dokumentacio/analitika - [Médiakönyvtár és szerkesztők](https://posty.hu/dokumentacio/media.md): HTML: https://posty.hu/dokumentacio/media - [Beállítások és fiók](https://posty.hu/dokumentacio/beallitasok.md): HTML: https://posty.hu/dokumentacio/beallitasok - [Csomagok és keretek](https://posty.hu/dokumentacio/csomagok.md): HTML: https://posty.hu/dokumentacio/csomagok - [Hibaelhárítás](https://posty.hu/dokumentacio/hibaelharitas.md): HTML: https://posty.hu/dokumentacio/hibaelharitas - [Támogatás](https://posty.hu/dokumentacio/tamogatas.md): HTML: https://posty.hu/dokumentacio/tamogatas - [A nyilvános REST API](https://posty.hu/dokumentacio/api.md): HTML: https://posty.hu/dokumentacio/api - [Posztolási szabályok platformonként](https://posty.hu/dokumentacio/platformok.md): HTML: https://posty.hu/dokumentacio/platformok - [MCP-szerver AI-ügynököknek](https://posty.hu/dokumentacio/mcp.md): HTML: https://posty.hu/dokumentacio/mcp - [posty-cli: a parancssori eszköz](https://posty.hu/dokumentacio/cli.md): HTML: https://posty.hu/dokumentacio/cli ## AI-ügynökök és fejlesztőknek - [Fejlesztői erőforrások: API, MCP, CLI, webhookok](https://posty.hu/fejlesztok.md): HTML: https://posty.hu/fejlesztok - [AI-ügynökök: MCP, CLI és REST API](https://posty.hu/ai.md): HTML: https://posty.hu/ai - [ChatGPT + Posty](https://posty.hu/ai/chatgpt.md): HTML: https://posty.hu/ai/chatgpt - [Claude és Claude Code + Posty](https://posty.hu/ai/claude.md): HTML: https://posty.hu/ai/claude - [Gemini CLI + Posty](https://posty.hu/ai/gemini.md): HTML: https://posty.hu/ai/gemini - [Hermes + Posty](https://posty.hu/ai/hermes.md): HTML: https://posty.hu/ai/hermes - [Muse + Posty](https://posty.hu/ai/muse.md): HTML: https://posty.hu/ai/muse - [OpenClaw + Posty](https://posty.hu/ai/openclaw.md): HTML: https://posty.hu/ai/openclaw ## Blog, útmutatók - [Milyen gyakran posztolj 2026-ban? Heti számok platformonként](https://posty.hu/blog/milyen-gyakran-posztolj.md): HTML: https://posty.hu/blog/milyen-gyakran-posztolj - [Posztolás Claude-ból és ChatGPT-ből: a videó a gépeden van, holnap 9-kor kimegy](https://posty.hu/blog/posztolas-claude-chatgpt-mcp.md): HTML: https://posty.hu/blog/posztolas-claude-chatgpt-mcp ## Platformok - [TikTok ütemező](https://posty.hu/csatornak/tiktok.md): HTML: https://posty.hu/csatornak/tiktok - [Instagram ütemező](https://posty.hu/csatornak/instagram.md): HTML: https://posty.hu/csatornak/instagram - [Facebook ütemező](https://posty.hu/csatornak/facebook.md): HTML: https://posty.hu/csatornak/facebook - [Threads ütemező](https://posty.hu/csatornak/threads.md): HTML: https://posty.hu/csatornak/threads - [LinkedIn ütemező](https://posty.hu/csatornak/linkedin.md): HTML: https://posty.hu/csatornak/linkedin - [YouTube ütemező](https://posty.hu/csatornak/youtube.md): HTML: https://posty.hu/csatornak/youtube - [X (Twitter) ütemező](https://posty.hu/csatornak/x.md): HTML: https://posty.hu/csatornak/x - [Pinterest ütemező](https://posty.hu/csatornak/pinterest.md): HTML: https://posty.hu/csatornak/pinterest - [Bluesky ütemező](https://posty.hu/csatornak/bluesky.md): HTML: https://posty.hu/csatornak/bluesky - [Google Business ütemező](https://posty.hu/csatornak/google-business.md): HTML: https://posty.hu/csatornak/google-business - [Discord ütemező](https://posty.hu/csatornak/discord.md): HTML: https://posty.hu/csatornak/discord - [Telegram ütemező](https://posty.hu/csatornak/telegram.md): HTML: https://posty.hu/csatornak/telegram - [Slack ütemező](https://posty.hu/csatornak/slack.md): HTML: https://posty.hu/csatornak/slack ## Összehasonlítások - [Posty vs. Buffer](https://posty.hu/osszehasonlitas/buffer.md): HTML: https://posty.hu/osszehasonlitas/buffer - [Posty vs. Hootsuite](https://posty.hu/osszehasonlitas/hootsuite.md): HTML: https://posty.hu/osszehasonlitas/hootsuite - [Posty vs. Later](https://posty.hu/osszehasonlitas/later.md): HTML: https://posty.hu/osszehasonlitas/later - [Posty vs. Publer](https://posty.hu/osszehasonlitas/publer.md): HTML: https://posty.hu/osszehasonlitas/publer - [Posty vs. Metricool](https://posty.hu/osszehasonlitas/metricool.md): HTML: https://posty.hu/osszehasonlitas/metricool - [Posty vs. SocialBee](https://posty.hu/osszehasonlitas/socialbee.md): HTML: https://posty.hu/osszehasonlitas/socialbee - [Posty vs. SocialPilot](https://posty.hu/osszehasonlitas/socialpilot.md): HTML: https://posty.hu/osszehasonlitas/socialpilot - [Posty vs. Sprout Social](https://posty.hu/osszehasonlitas/sprout-social.md): HTML: https://posty.hu/osszehasonlitas/sprout-social - [Posty vs. Agorapulse](https://posty.hu/osszehasonlitas/agorapulse.md): HTML: https://posty.hu/osszehasonlitas/agorapulse - [Posty vs. Sendible](https://posty.hu/osszehasonlitas/sendible.md): HTML: https://posty.hu/osszehasonlitas/sendible - [Posty vs. Vista Social](https://posty.hu/osszehasonlitas/vista-social.md): HTML: https://posty.hu/osszehasonlitas/vista-social - [Posty vs. Nuelink](https://posty.hu/osszehasonlitas/nuelink.md): HTML: https://posty.hu/osszehasonlitas/nuelink - [Posty vs. ContentStudio](https://posty.hu/osszehasonlitas/contentstudio.md): HTML: https://posty.hu/osszehasonlitas/contentstudio - [Posty vs. Planable](https://posty.hu/osszehasonlitas/planable.md): HTML: https://posty.hu/osszehasonlitas/planable - [Posty vs. Canva](https://posty.hu/osszehasonlitas/canva.md): HTML: https://posty.hu/osszehasonlitas/canva - [Posty vs. Meta Business Suite](https://posty.hu/osszehasonlitas/meta-business-suite.md): HTML: https://posty.hu/osszehasonlitas/meta-business-suite - [Posty vs. Kontentino](https://posty.hu/osszehasonlitas/kontentino.md): HTML: https://posty.hu/osszehasonlitas/kontentino ## Jogi és adatvédelmi dokumentumok - [Általános szerződési feltételek](https://posty.hu/aszf.md): HTML: https://posty.hu/aszf - [Adatvédelmi tájékoztató](https://posty.hu/adatvedelem.md): HTML: https://posty.hu/adatvedelem - [Adatfeldolgozási megállapodás](https://posty.hu/adatfeldolgozasi-megallapodas.md): HTML: https://posty.hu/adatfeldolgozasi-megallapodas - [Adattörlési útmutató](https://posty.hu/adattorlesi-utmutato.md): HTML: https://posty.hu/adattorlesi-utmutato - [Elállás és visszatérítés](https://posty.hu/elallas.md): HTML: https://posty.hu/elallas - [Impresszum](https://posty.hu/impresszum.md): HTML: https://posty.hu/impresszum