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

# Connect OpenCode to Zapier MCP

> Add Zapier MCP to your OpenCode configuration and authenticate over OAuth.

Zapier MCP connects to OpenCode through your configuration file. Add the Zapier connect URL as a remote MCP server, then log in from your terminal.

## Before you begin

* A [Zapier account](https://zapier.com/sign-up).
* OpenCode installed.

## Connect Zapier MCP to OpenCode

<Steps>
  <Step title="Add the Zapier server">
    Add the following snippet to your OpenCode configuration:

    ```json theme={null}
    {
      "$schema": "https://opencode.ai/config.json",
      "mcp": {
        "zapier": {
          "type": "remote",
          "url": "https://mcp.zapier.com/api/v1/connect",
          "enabled": true
        }
      }
    }
    ```
  </Step>

  <Step title="Log in">
    Run `opencode mcp auth zapier` in your terminal to log in with your Zapier account.
  </Step>

  <Step title="Verify the connection">
    In OpenCode, start a new session and ask:

    ```text theme={null}
    Run the Zapier onboarding skill using get_zapier_skill with name "zapier-mcp-onboarding" and follow its instructions.
    ```

    Your agent lists the Zapier tools available to it. If nothing appears, check [Troubleshoot](/mcp/troubleshoot/tools-missing-in-client).
  </Step>
</Steps>

## Next steps

<CardGroup cols={2}>
  <Card title="Your first MCP workflow" href="/mcp/your-first-mcp-workflow">
    Run the onboarding Skill and make your first tool call.
  </Card>

  <Card title="How tools work" href="/mcp/how-tools-work">
    Learn how dynamic tool discovery works and what the meta-tools do.
  </Card>
</CardGroup>
