π SQL Server / Azure SQL Toolkit β Community Package #471
Replies: 3 comments 1 reply
-
|
Thank you @izzuddinmohsin for sharing it! You can also submit the package to Neuron Hub. It will also be published on the Newsletter: https://neuron-ai.dev |
Beta Was this translation helpful? Give feedback.
-
|
By the way, when you attach the toolkit to the agent you don't need to call the This is enough: // In your Agent:
protected function tools(): array
{
return [
SQLServerToolkit::make(
DB::connection('sqlsrv')->getPdo()
),
];
}The framework will bootstrap the toolkit internally. Otherwise the guidelines will be ignored. |
Beta Was this translation helpful? Give feedback.
-
|
Great toolkit for integrating SQL Server/Azure SQL with AI agents! The schema-aware query handling and security hardening (blocking For developers building AI agents that interact with SQL databases, ai2sql.io can complement execution toolkits like this β it converts natural language to SQL queries, which could serve as the query generation layer that feeds into your toolkit's secure execution capabilities. Natural language β SQL generation + schema-aware secure execution could make for a solid end-to-end pipeline for AI data agents. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hey everyone! π
Most of my projects run on SQL Server / Azure SQL, so I built a SQL Server Toolkit for Neuron AI β similar to the built-in MySQL Toolkit. I've been using it across multiple projects and decided to open-source it in case anyone else needs it.
Package: izzuddinmohsin/neuron-sqlserver-toolkit
GitHub: SQLServerToolkit-neuron-ai
What's included?
Handles SQL Server-specific things like schema-aware queries, positional parameters,
SCOPE_IDENTITY(), views discovery, and security hardening againstxp_cmdshell,OPENROWSET, etc.Quick start
Feedback and contributions are welcome!
Thanks to @ilvalerione and the Neuron team for the great framework π
Beta Was this translation helpful? Give feedback.
All reactions