Jump to related tools in the same category or review the original source on GitHub.

DevOps & Cloud @sqlservr Updated 6/28/2026 1,486 downloads 0 stars Security: Pass

Sql Server Toolkit OpenClaw Plugin & Skill | ClawHub

Looking to integrate Sql Server Toolkit into your AI workflows? This free OpenClaw plugin from ClawHub helps you automate devops & cloud tasks instantly, without having to write custom tools from scratch.

What this skill does

Command-line toolkit for Microsoft SQL Server.

Install

ClawHub CLI
openclaw skills install @sqlservr/sql-server-toolkit
Node.js (npx)
npx clawhub@latest install sql-server-toolkit

Full SKILL.md

Open original

SKILL.md content below is scrollable.

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;

ClawHub Registry URL: https://clawhub.ai/sqlservr/skills/sql-server-toolkit

Related skills

If this matches your use case, these are close alternatives in the same category.