---
title: "MCP-eszközök | Posty dokumentáció"
description: "Az MCP-szerver eszközei egyenként: mit csinálnak, melyik ír, és milyen sorrendben érdemes hívni őket."
canonical: https://posty.hu/en/docs/mcp/tools
source: https://posty.hu/en/docs/mcp/tools.md
---

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

| 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 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](https://posty.hu/en/docs/api/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](https://posty.hu/en/docs/studio/scheduling) page.

## Manifest

The tool list is available in the manifest without authentication:

[https://posty.hu/.well-known/mcp.json](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.

Documentation pages

Is something missing from this page? Email [norbert@posty.hu](mailto:norbert@posty.hu) or use the form on the [Help](https://posty.hu/en/help) page.
