> ## Documentation Index
> Fetch the complete documentation index at: https://connect.trypost.it/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# What is Connect

> Publishing infrastructure for products you build — REST, MCP, and a hosted connect flow.

TryPost Connect is the layer you call to connect social accounts, upload media, and publish natively. You keep the editor and the queue. We run OAuth, tokens, storage, and the networks.

It is not a calendar and not an agency suite. There is no asset library.

<CardGroup cols={3}>
  <Card title="Get started" icon="rocket" href="/docs/getting-started/quickstart">
    Account, connect a network, create a token.
  </Card>

  <Card title="API reference" icon="code" href="/docs/api-reference/introduction">
    Every REST endpoint.
  </Card>

  <Card title="MCP" icon="microchip" href="/docs/guides/mcp">
    The same account, as tools for an agent.
  </Card>
</CardGroup>

## How you call it

**REST** — `https://connect.trypost.it/api` with a Bearer token. Create the token in the dashboard under **API keys**. It is shown once. Keep it on a server. Details: [Authentication](/docs/getting-started/authentication).

**MCP** — `https://connect.trypost.it/mcp`. The agent signs in with OAuth. An API key on that URL is refused. Setup: [MCP](/docs/guides/mcp).

There is no `api.connect.trypost.it`. The dashboard is for your team. It is not the UI you ship.

## Publish a post

```mermaid theme={null}
sequenceDiagram
  participant App as Your product
  participant User
  participant Connect
  participant Storage
  participant Network

  App->>Connect: Start connect
  Connect-->>App: URL to open
  User->>Network: Sign in
  Connect->>User: Back to your product
  App->>Connect: Ask for an upload slot
  Connect-->>App: Upload URL + public URL
  App->>Storage: Put the file
  App->>Connect: Create a draft with that public URL
  App->>Connect: Publish
  Connect->>Network: Native post
```

1. **Connect a network** in the user’s browser. You start the flow and receive them back. There is no MCP connect tool. [Connect accounts](/docs/guides/connect-accounts).
2. **Upload the file** to Connect first. We do not fetch URLs from the internet. [Media](/docs/guides/media).
3. **Create a draft**, then schedule it or publish now. One post, many networks; caption and media can differ per row. [Posts](/docs/guides/posts).

When a post lands (or fails), or an account connects, we can `POST` a signed event to your URL. [Webhooks](/docs/guides/webhooks).

Exact paths and bodies: [API reference](/docs/api-reference/introduction).

## Networks

Twelve networks. LinkedIn is profile or Page. Instagram is Login or via Facebook. Those are different connections.

<Columns cols={3}>
  <Card title="LinkedIn" icon="linkedin" href="/docs/platforms/linkedin">Profile and company Page</Card>
  <Card title="X" icon="x-twitter" href="/docs/platforms/x-twitter">Posts with images or video</Card>
  <Card title="Facebook" icon="facebook" href="/docs/platforms/facebook">Posts, reels, stories</Card>
  <Card title="Instagram" icon="instagram" href="/docs/platforms/instagram">Feed, reels, stories</Card>
  <Card title="TikTok" icon="tiktok" href="/docs/platforms/tiktok">Video and photo carousels</Card>
  <Card title="YouTube" icon="youtube" href="/docs/platforms/youtube">Shorts</Card>
  <Card title="Threads" icon="threads" href="/docs/platforms/threads">Text, images, video</Card>
  <Card title="Pinterest" icon="pinterest" href="/docs/platforms/pinterest">Pins, video pins, carousels</Card>
  <Card title="Bluesky" icon="cloud" href="/docs/platforms/bluesky">Posts with media</Card>
  <Card title="Mastodon" icon="mastodon" href="/docs/platforms/mastodon">Any instance</Card>
  <Card title="Telegram" icon="telegram" href="/docs/platforms/telegram">Channels and groups</Card>
  <Card title="Discord" icon="discord" href="/docs/platforms/discord">Channel messages</Card>
</Columns>

You can connect more than one identity on the same network. The same person cannot sit twice.

Two non-X accounts are free. X always counts. Extra non-X accounts are \$3 each / month. Connecting beyond that without a card is refused.
