---
title: "MCP-példák | Posty dokumentáció"
description: "Mit mondj az ügynöködnek, és mit fog csinálni: néhány valódi kérés a kezdéshez."
canonical: https://posty.hu/en/docs/mcp/examples
source: https://posty.hu/en/docs/mcp/examples.md
---

MCP-szerver

# MCP-példák

Mit mondj az ügynöködnek, és mit fog csinálni: néhány valódi kérés a kezdéshez.

## Your first request

Use this to check the connection and your permissions:

```
What social channels do I have connected in Posty?
```

Kód másolása

The agent calls the `list_integrations` tool and lists each channel's name, platform, and status. If that works, everything else will too.

## Creating draft posts

```
Write three short posts about next week's product announcement,
check which of my channels are connected,
find the next three free slots,
and put them in as DRAFTS.
```

Kód másolása

To do this, the agent uses the `get_workspace_context`, `list_integrations`, `list_posts`, and `create_post` tools. The drafts appear in your calendar for you to schedule.

Ask for a draft, don't leave it to chance

Specify in your request that you want a draft. If you regularly work with an agent, give it a key without publishing permission. That way, it cannot publish anything by mistake, even if the prompt goes wrong. See the [Authentication](https://posty.hu/en/docs/api/authentication) page.

## Reviewing your calendar

```
What's scheduled for next week? Is there a day when nothing goes out?
```

Kód másolása

The `list_posts` tool returns the calendar in both UTC and local time, including channel names, so the agent does not have to convert the times.

### Scheduling in the next free slot

```
Move Thursday's post to the next free slot,
and tell me when it will be.
```

Kód másolása

## Channel-specific versions

```
Write a post about the new feature.
Longer and factual for LinkedIn; short for X.
Check first how many characters fit on each.
```

Kód másolása

The `get_integration_schema` tool provides the character limit enabled for the account, so the agent does not rely on the platform's general limit. `preview_post` shows what would be published on each channel before anything is saved.

## Good habits

- **Ask it to check first.** "Check my calendar, then suggest a time" gives a better result than a made-up date.
- **Specify the channels.** Name them, or say "all connected channels". You can also specify a client group.
- **Review its work.** The draft is in your calendar. Publishing cannot be undone.
- **It cannot connect a channel.** A person has to do that on the platform. See the [Connecting a channel](https://posty.hu/en/docs/channels) page.

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.
