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

# Antigravity

> Connect TryPost to Google Antigravity for AI-powered social media management

[Antigravity](https://antigravity.google) is Google's AI coding agent. You can connect it to TryPost's MCP server to manage your social media scheduling with natural language.

<Note>
  As of May 2026, Antigravity's MCP layer doesn't fully support the standard OAuth + Dynamic Client Registration flow that other clients use. We recommend the **Personal Access Token (Bearer)** method below until Antigravity adds first-class OAuth support.
</Note>

## Prerequisites

* Antigravity installed
* A TryPost Cloud account with an active trial or subscription ([start a 7-day free trial](/knowledge-base/plans-and-billing))
* A TryPost Personal Access Token (Settings > API Keys)

## Setup

<Steps>
  <Step title="Open the MCP configuration file">
    From Antigravity, open **MCP Servers → Manage → View raw config**, then add the TryPost server:

    ```json theme={null}
    {
      "mcpServers": {
        "trypost": {
          "serverUrl": "https://app.trypost.it/mcp/trypost",
          "headers": {
            "Authorization": "Bearer YOUR_API_KEY"
          }
        }
      }
    }
    ```

    <Note>
      Replace `YOUR_API_KEY` with your Personal Access Token from the [TryPost dashboard](https://app.trypost.it).
    </Note>
  </Step>

  <Step title="Restart Antigravity">
    Restart Antigravity to load the new MCP configuration.
  </Step>

  <Step title="Verify the connection">
    Ask Antigravity to interact with your TryPost account:

    ```
    List all my TryPost social accounts
    ```
  </Step>
</Steps>

<Tip>
  Antigravity uses `"serverUrl"` for remote MCP connections (not `"url"`). This is the same format used by Windsurf.
</Tip>

## Example prompts

```
Create a new post scheduled for Friday at 2pm
```

```
Show me all labels in my workspace
```

```
Create a signature called "Social Media" with #socialmedia #content #marketing
```
