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 + Add connection and pick a provider. You can connect multiple accounts per provider (e.g. multiple Slack workspaces or GitHub orgs).

ProviderWhat It Gives You
LinearIssues, cycles, projects, comments, team management
NotionPages, databases, blocks, comments, search
SlackMessages, channels, threads, reactions, search
GitHubRepos, issues, PRs, code, branches, actions, releases
TelegramMessages, chats, global search, contacts (your account)
Google WorkspaceGmail, Calendar, Drive
AirtableBases, tables, records, fields, views

Most providers use OAuth — you'll be redirected to authorize Gateway, then sent back. Telegram uses phone-based auth (a modal walks you through entering your phone number and verification code). GitHub uses a GitHub App installation flow where you pick which repos/orgs to grant access.

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