Getting Started
This guide walks a new workspace admin from sign-up to a successful tool call.
1. Create your account
- Go to https://integration-hub.rezolve.ai and click Sign up.
- Verify your email and sign in.
- 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
- Open Connections in the sidebar.
- Click Add connection.
- Pick a connector - for example Freshservice under the ITSM domain.
- Choose an authentication method (OAuth 2.0, API key, or Basic - depends on the vendor).
- Provide the required credentials. For OAuth, you'll be redirected to the vendor and back.
- Click Test to verify, then Save.
The corresponding domain module is automatically enabled for your workspace.
4. Try a tool from the UI
- Open Tools in the sidebar.
- Filter by the domain you just connected.
- Pick a read-only tool (e.g.
itsm.tickets.list) and click Test. - 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
- Open Settings → API Access.
- 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.