Skip to main content

Getting Started

This guide walks a new workspace admin from sign-up to a successful tool call.

1. Create your account

  1. Go to https://integration-hub.rezolve.ai and click Sign up.
  2. Verify your email and sign in.
  3. On first login you'll be asked to create a workspace (also called a tenant). Pick a name and a slug - the slug becomes part of your URLs.

You're now the owner of the workspace and can invite teammates from Settings → Team.

2. Understand the building blocks

  • A connector is a supported vendor (e.g. ServiceNow, Slack, Workday).
  • A connection is your workspace's authenticated link to one instance of a vendor.
  • A tool is a normalized action (e.g. itsm.tickets.create) you can call.
  • A domain is a category of tools (ITSM, HRIS, CRM, etc.).

See Core Concepts for more.

3. Connect your first integration

  1. Open Connections in the sidebar.
  2. Click Add connection.
  3. Pick a connector - for example Freshservice under the ITSM domain.
  4. Choose an authentication method (OAuth 2.0, API key, or Basic - depends on the vendor).
  5. Provide the required credentials. For OAuth, you'll be redirected to the vendor and back.
  6. Click Test to verify, then Save.

The corresponding domain module is automatically enabled for your workspace.

4. Try a tool from the UI

  1. Open Tools in the sidebar.
  2. Filter by the domain you just connected.
  3. Pick a read-only tool (e.g. itsm.tickets.list) and click Test.
  4. Fill in the input form and click Run.

If the call succeeds, you'll see the normalized JSON response.

5. Get an API key for programmatic access

  1. Open Settings → API Access.
  2. Click Create API key, give it a name, and copy the key. You won't see it again.

6. Call a tool over REST

curl -X POST 'https://integration-hub.rezolve.ai/api/v1/tools/itsm.tickets.list/execute' \
-H 'Authorization: Bearer YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{ "input": { "limit": 5 } }'

See REST API Reference for details.

7. Connect an AI agent over MCP

Point any MCP-compatible client (Claude Desktop, Cursor, your own agent) at:

https://integration-hub.rezolve.ai/mcp

Authenticate with the same API key as a Bearer token. See MCP Reference.

Next steps

  • Add more connections so a single domain can route to multiple instances.
  • Configure approval policies for write/destructive tools in Settings → Policies.
  • Browse the full tool catalog.