MCP-eszközök
Az MCP-szerver eszközei egyenként: mit csinálnak, melyik ír, és milyen sorrendben érdemes hívni őket.
Tools
| Tool | What it does | Writes? |
|---|---|---|
| get_workspace_context | A pontos idő UTC-ben, a felhasználó időzónája és a munkaterület neve. | no |
| list_integrations | A bekötött csatornák azonosítóval, @handle-lel és állapottal. | no |
| list_groups | Az ügyfélcsoportok. | no |
| get_integration_schema | Egy csatorna szabályai és a fiókra feloldott karakterkorlát. | no |
| get_channel_options | Platformspecifikus választható értékek egy csatornához. | yes |
| preview_post | Megmutatja, mi menne ki, csatornánként. Nem ír semmit. | no |
| list_posts | A naptár, UTC és helyi idővel, csatornanévvel. | no |
| delete_post | Nem közzétett poszt törlése. A már kint lévőt visszautasítja. | yes |
| create_post | Piszkozat, ütemezés vagy azonnali közzététel. | yes |
| upload_media_from_url | Kép vagy videó a médiatárba URL-ből vagy data URL-ből. | yes |
| create_upload_link | Böngészős link, amire a felhasználó ráhúzza a saját gépén lévő fájlt. Két óráig él. | yes |
| list_upload_link_files | Ami a feltöltési linken beérkezett, a posztba tehető címmel. | no |
Tools that make changes
Of the 12 tools, 5 make changes. The rest are read-only and cannot do any harm.
create_post can create a draft, schedule a post, or publish immediately. Publishing immediately cannot be undone. If you only want your agent to create drafts, don't rely on the prompt. Give it a key that cannot publish. See the Authentication page.
delete_postonly deletes unpublished posts. If a post is already live, the request is rejected.preview_postshows what would be published to each channel without writing anything. It is worth running before scheduling.
Order of operations
- 1get_workspace_contextThe exact time in UTC, your time zone, and the workspace name. Without this, the agent would schedule based on its own assumed time.
- 2list_integrationsThe channels and their IDs. Every subsequent call requires these IDs.
- 3get_integration_schemaThe target channel's rules and the character limit that applies to the account, before the agent writes any copy.
- 4list_postsThe calendar, so the agent doesn't schedule a post for a time that's already taken.
- 5preview_post, then create_postCheck what would be published before creating the post.
Time and time zone
The MCP server uses UTC, and get_workspace_context returns your time zone. list_posts returns both UTC and local time, along with the channel name, so the agent does not have to convert between them.
Dates work the same way here as everywhere else. See the Scheduling page.
Manifest
The tool list is available in the manifest without authentication:
https://posty.hu/.well-known/mcp.json
This is the same list returned by the server. Clients can read it before connecting to find out what the server can do.