Microsoft SQL Server (MS SQL)
Follow this guide to connect your Microsoft SQL Server to Wobby and start building agents on top of your data.
To connect your Microsoft SQL Server database to Wobby, you’ll need to:
Create a login and user in your SQL Server.
Grant the necessary read-only permissions.
Allow Wobby’s IP address through your firewall or network rules.
Set up the connection in the Wobby interface.
⚠️ Wobby’s agents only run read-only queries on your data. Write permissions are never used.
1. Create Login and User in SQL Server
You’ll need to create a server-level login and a database-level user that Wobby can use to connect. The following SQL script sets up a read-only user for Wobby:
âś… The
db_datareader
role gives read-only access to all current and future tables in the database.
3. Allow Wobby’s IP Address
If your SQL Server is behind a firewall or uses network policies, make sure to allow inbound traffic from Wobby’s static IP:
This is required for Wobby’s agents to access your database.
4. Set Up the Connection in Wobby
Go to Wobby → Data Sources.
Click New MS SQL Connection.
Fill in the following details:
Host: your SQL Server address
Port: typically 1433
Database name: the one where
wobby_user
has accessUsername:
wobby_login
Password: the password you defined earlier
Test the connection and save.
Last updated
Was this helpful?