MCP-szerver

MCP-eszközök

Az MCP-szerver eszközei egyenként: mit csinálnak, melyik ír, és milyen sorrendben érdemes hívni őket.

Tools

ToolWhat it doesWrites?
get_workspace_contextA pontos idő UTC-ben, a felhasználó időzónája és a munkaterület neve.no
list_integrationsA bekötött csatornák azonosítóval, @handle-lel és állapottal.no
list_groupsAz ügyfélcsoportok.no
get_integration_schemaEgy csatorna szabályai és a fiókra feloldott karakterkorlát.no
get_channel_optionsPlatformspecifikus választható értékek egy csatornához.yes
preview_postMegmutatja, mi menne ki, csatornánként. Nem ír semmit.no
list_postsA naptár, UTC és helyi idővel, csatornanévvel.no
delete_postNem közzétett poszt törlése. A már kint lévőt visszautasítja.yes
create_postPiszkozat, ütemezés vagy azonnali közzététel.yes
upload_media_from_urlKép vagy videó a médiatárba URL-ből vagy data URL-ből.yes
create_upload_linkBö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_filesAmi 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 publish immediately

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_post only deletes unpublished posts. If a post is already live, the request is rejected.
  • preview_post shows what would be published to each channel without writing anything. It is worth running before scheduling.

Order of operations

  1. 1
    get_workspace_context
    The exact time in UTC, your time zone, and the workspace name. Without this, the agent would schedule based on its own assumed time.
  2. 2
    list_integrations
    The channels and their IDs. Every subsequent call requires these IDs.
  3. 3
    get_integration_schema
    The target channel's rules and the character limit that applies to the account, before the agent writes any copy.
  4. 4
    list_posts
    The calendar, so the agent doesn't schedule a post for a time that's already taken.
  5. 5
    preview_post, then create_post
    Check 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.

Is something missing from this page? Email [email protected] or use the form on the Help page.