sql-server-toolkit
/install sql-server-toolkit
SQL Server Toolkit
Command-line toolkit for Microsoft SQL Server.
Capabilities
- Schema creation
- Versioned migrations
- Index management
- Performance diagnostics
- Backup & restore
- Bulk import/export
Connect
sqlcmd -S localhost -E sqlcmd -S localhost -U sa -P YourPassword
Run Script
sqlcmd -S localhost -d MyDatabase -i script.sql
Example Table
CREATE TABLE Users ( Id INT IDENTITY(1,1) PRIMARY KEY, Email NVARCHAR(255) NOT NULL UNIQUE, Name NVARCHAR(100) NOT NULL, CreatedAt DATETIME2 DEFAULT SYSDATETIME() );
Example Index
CREATE INDEX IX_Users_Email ON Users(Email);
Backup Example
BACKUP DATABASE MyDatabase TO DISK = 'C:\backup\MyDatabase.bak' WITH FORMAT, INIT;
Performance Diagnostics
SET STATISTICS IO ON; SET STATISTICS TIME ON;
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install sql-server-toolkit - After installation, invoke the skill by name or use
/sql-server-toolkit - Provide required inputs per the skill's parameter spec and get structured output
What is sql-server-toolkit?
Command-line tools for SQL Server schema creation, migrations, index management, performance diagnostics, backups, restores, and bulk data import/export. It is an AI Agent Skill for Claude Code / OpenClaw, with 988 downloads so far.
How do I install sql-server-toolkit?
Run "/install sql-server-toolkit" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is sql-server-toolkit free?
Yes, sql-server-toolkit is completely free (open-source). You can download, install and use it at no cost.
Which platforms does sql-server-toolkit support?
sql-server-toolkit is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created sql-server-toolkit?
It is built and maintained by Ramesh Babu Vavilla (@sqlservr); the current version is v1.0.1.