送信

Neuromcp.sqlserver

@AhmedKhalil777

A tool for interacting with Microsoft SQL Server databases: - SQL Query Execution: Execute SQL queries against SQL Server databases - Schema Inspection: Explore database schema information - Connection Management: Safely store and manage database connections Easy install by running dotnet command : dotnet tool install --global NeuroMCP.SqlServer
概要

What is Neuromcp.sqlserver?

Neuromcp.sqlserver is a tool designed for interacting with Microsoft SQL Server databases, allowing users to execute SQL queries, inspect database schemas, and manage connections securely.

How to use Neuromcp.sqlserver?

To use Neuromcp.sqlserver, install it by running the command: dotnet tool install --global NeuroMCP.SqlServer. After installation, configure your database connection using the provided server command and parameters.

Key features of Neuromcp.sqlserver?

  • SQL Query Execution: Execute SQL queries against SQL Server databases.
  • Schema Inspection: Explore and inspect database schema information.
  • Connection Management: Safely store and manage database connections.

Use cases of Neuromcp.sqlserver?

  1. Executing complex SQL queries for data retrieval and manipulation.
  2. Inspecting database schemas for better understanding and documentation.
  3. Managing multiple database connections securely.

FAQ from Neuromcp.sqlserver?

  • What are the requirements to use Neuromcp.sqlserver?

You need .NET 8.0 or higher and Microsoft SQL Server (2016 or newer) or Azure SQL.

  • Is Neuromcp.sqlserver free to use?

Yes! Neuromcp.sqlserver is free to use for everyone.

  • Can I use Neuromcp.sqlserver with Azure SQL?

Yes! It is compatible with Azure SQL databases.

サーバー設定

{
  "mcpServers": {
    "MSSSQLServer1": {
      "type": "stdio",
      "command": "neuromcp-mssql",
      "args": [
        "--port",
        "5200"
      ],
      "env": {
        "MSSQL_SERVER": "Database Server",
        "MSSQL_USER": "UserId",
        "MSSQL_PASSWORD": "Password",
        "MSSQL_DATABASE": "DatabaseName"
      }
    }
  }
}