Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

Getting Started

Get up and running with Gateway in under 5 minutes.

1. Create an Account

Go to gateway.oxc.dev and sign in. You'll land on your dashboard.

2. Connect Your Providers

Click Connect next to each provider you want to use:

ProviderWhat It Gives You
LinearIssues, cycles, projects, comments, team management
NotionPages, databases, blocks, comments, search
SlackMessages, channels, threads, reactions, search

Each provider uses OAuth — you'll be redirected to authorize Gateway, then sent back to your dashboard.

3. Install in Your Editor

Cursor

Click the Install to Cursor button on your dashboard. It opens Cursor with the MCP server pre-configured.

Claude Code

Run this in your terminal:

claude mcp add gateway --transport http https://gateway-mcp.oxc.dev/mcp

OpenCode

Add to your opencode.json:

{
  "mcp": {
    "gateway": {
      "type": "http",
      "url": "https://gateway-mcp.oxc.dev/mcp"
    }
  }
}

Other Clients

Any MCP-compatible client can connect via bearer token. Go to the Other tab on your dashboard to get your configuration.

{
  "gateway": {
    "type": "http",
    "url": "https://gateway-mcp.oxc.dev/mcp",
    "headers": {
      "Authorization": "Bearer YOUR_TOKEN"
    }
  }
}

4. Try It Out

Once connected, ask your AI assistant:

Search for recent Linear issues assigned to me

Gateway will use the search tool to discover the right action, then exec to run it. You should see your Linear issues come back.

Next Steps