RDSMCP
Verified Safeby bobtherdsman
Overview
Assess SQL Server instances for migration compatibility to AWS RDS.
Installation
python server.pySecurity Notes
The tool connects to specified SQL Server instances, requiring network access. It uses `Trusted_Connection=yes` or explicit credentials. The connection string uses `Encrypt=yes;TrustServerCertificate=yes`, where `TrustServerCertificate=yes` bypasses certificate validation, potentially allowing MITM attacks if not used in a secure, trusted environment. The core SQL query utilizes `sp_MSforeachdb`, which can be a SQL injection risk if the inner queries were dynamically constructed from untrusted user input; however, in this implementation, the inner queries are fixed and use `?` only for database names derived internally from `sys.databases`, mitigating this specific risk. No hardcoded credentials or `eval` statements were found.
Similar Servers
MsSqlMCP
Provides an MCP Server for SQL Server database schema inspection and safe, read-only query execution to AI clients.
mssql-mcp-server
Provides an enterprise-grade Model Context Protocol server for Microsoft SQL Server, enabling schema discovery, data operations, profiling, and administration with strong governance controls.
mssql-mcp
Enables AI assistants to interact with both local SQL Server and Azure SQL Database through natural language queries and commands.
MCP
Integrates Microsoft SQL Server databases with AI assistants (OpenAI, Claude Desktop) for natural language querying, automated database operations, and test suite generation.