Skip to main content

MCP server for Microsoft SQL Server with SQL Agent job management and stored procedure version control

Project description

MSSQL Agent MCP

A Model Context Protocol (MCP) server that provides tools for interacting with Microsoft SQL Server databases and managing SQL Server Agent Jobs. Beyond basic database query functionality, this server supports managing stored procedures and SQL Server Agent jobs as code. Users can easily export, edit, and update these objects, and integrate them into version control systems.

Features

This MCP server provides the following tools:

Database Tools

Tool Description
query Execute SELECT queries and return results
execute Execute INSERT, UPDATE, DELETE, CREATE statements
list_tables List all tables in the database
describe_table Get table schema including columns, types, and constraints
list_databases List all databases on the server
get_table_sample Get sample rows from a table
get_table_indexes Get indexes defined on a table
get_foreign_keys Get foreign key relationships

Stored Procedure Tools

Tool Description
list_procedures List all stored procedures in the current database (optionally include definitions)
list_all_procedures List all stored procedures across all databases on the server
get_procedure_details Get detailed info about a procedure including its full definition
get_procedure_parameters Get parameters for a specific stored procedure
export_procedures_to_files Export procedures to SQL files with directory structure: {db}/{schema}/{procedure}.sql
update_procedure_from_file Update a stored procedure from an edited SQL file

SQL Server Agent Job Tools

Tool Description
list_agent_jobs List all SQL Server Agent jobs with status and category
get_job_steps Get all steps for a specific job including commands and flow control
get_job_details Get detailed settings and last run info for a job
get_job_schedules Get schedule configurations for a job
get_job_history Get execution history for a job
export_enabled_jobs_to_files Export all enabled jobs and steps to SQL files
update_job_step_from_file Update an existing job step from an edited SQL file
create_job_step_from_file Create a new job step from a SQL file (auto-renames incorrectly named files)

๐ŸŒŸ What Makes This Different?

While there are several MSSQL MCP servers available, this one offers unique capabilities not found in others:

Feature Description Why It Matters
SQL Server Agent Job Management Full CRUD operations for Agent jobs, steps, and schedules Most MCP servers only handle database queries - this one lets you manage your entire automation infrastructure
Jobs-as-Code Workflow Export enabled jobs to files, edit locally, push changes back Enable Git version control for your SQL Agent jobs - track changes, review PRs, rollback easily
Stored Procedures-as-Code Export/import stored procedures with metadata preservation Manage procedures like application code with proper directory structure
Smart File Naming Auto-renames files to {step_id}_{step_name}.sql format Prevents conflicts and maintains consistency when creating new job steps
Syntax Validation Uses SET PARSEONLY before applying changes Catch SQL errors before they break your production jobs
Metadata Headers Preserves job/procedure metadata in file comments Never lose context about when something was created or modified
Built with FastMCP Modern, decorator-based tool definitions Cleaner code, automatic schema generation, better maintainability

Comparison with Other MSSQL MCP Servers

Capability This Server Others
Basic queries (SELECT, INSERT, UPDATE) โœ… โœ…
Schema inspection โœ… โœ…
SQL Server Agent job listing โœ… โŒ
Job step management โœ… โŒ
Job schedule viewing โœ… โŒ
Export jobs to files โœ… โŒ
Update jobs from files โœ… โŒ
Stored procedure export/import โœ… โŒ
Syntax pre-validation โœ… โŒ
FastMCP framework โœ… โŒ

Stored Procedure Management

This MCP server provides a complete workflow for managing stored procedures as code:

1. Export Procedures to Files

Export all stored procedures from specified databases to a directory structure:

Use export_procedures_to_files with output_dir: "/path/to/procedures"
Optionally specify databases: ["materialdb", "salesdb"]

This creates:

procedures/
โ”œโ”€โ”€ materialdb/
โ”‚   โ”œโ”€โ”€ dbo/
โ”‚   โ”‚   โ”œโ”€โ”€ usp_get_facility_info_data.sql
โ”‚   โ”‚   โ”œโ”€โ”€ usp_update_inventory.sql
โ”‚   โ”‚   โ””โ”€โ”€ usp_process_orders.sql
โ”‚   โ””โ”€โ”€ reporting/
โ”‚       โ””โ”€โ”€ usp_generate_report.sql
โ”œโ”€โ”€ salesdb/
โ”‚   โ””โ”€โ”€ dbo/
โ”‚       โ””โ”€โ”€ usp_calculate_totals.sql
โ””โ”€โ”€ ...

SQL files contain:

  • Metadata header (database, schema, procedure name, create/modify dates)
  • Full procedure definition (CREATE PROCEDURE statement)

2. Edit and Update Procedures

After editing a SQL file, push changes to SQL Server:

Use update_procedure_from_file with file_path: "/path/to/procedures/materialdb/dbo/usp_get_facility_info_data.sql"

This tool:

  1. Parses the file path to extract database, schema, and procedure name
  2. Also reads metadata from header comments if present
  3. Automatically converts CREATE PROCEDURE to ALTER PROCEDURE
  4. Validates the procedure exists before updating
  5. Executes the ALTER statement to update the procedure

Example Procedure File

-- Database: materialdb
-- Schema: dbo
-- Procedure: usp_get_facility_info_data
-- Created: 2026-01-05 10:30:00
-- Modified: 2026-01-26 14:22:00
-- ============================================

CREATE PROCEDURE [dbo].[usp_get_facility_info_data]
AS
BEGIN
    -- Your procedure logic here
    SELECT * FROM facility_info
END

SQL Server Agent Job Management

This MCP server provides a complete workflow for managing SQL Server Agent jobs as code:

1. Export Jobs to Files

Export all enabled (non-deprecated) jobs to a directory structure:

Use export_enabled_jobs_to_files with output_dir: "/path/to/agent_server_jobs"

This creates:

agent_server_jobs/
โ”œโ”€โ”€ Job_Name_1/
โ”‚   โ”œโ”€โ”€ job_info.json          # Job metadata (schedules, description, etc.)
โ”‚   โ”œโ”€โ”€ 01_first_step.sql      # Step 1 SQL command
โ”‚   โ”œโ”€โ”€ 02_second_step.sql     # Step 2 SQL command
โ”‚   โ””โ”€โ”€ 03_third_step.sql      # Step 3 SQL command
โ”œโ”€โ”€ Job_Name_2/
โ”‚   โ”œโ”€โ”€ job_info.json
โ”‚   โ”œโ”€โ”€ 01_step_one.sql
โ”‚   โ””โ”€โ”€ 02_step_two.sql
โ””โ”€โ”€ ...

job_info.json contains:

  • Job ID, name, and description
  • Enabled status and category
  • Owner and notification settings
  • Schedule configurations (frequency, intervals, active times)
  • Creation and modification dates

SQL files contain:

  • Metadata header with job name, step ID, step name, subsystem, and database
  • The actual SQL command

2. Edit Existing Job Steps

After editing a SQL file, push changes to SQL Server:

Use update_job_step_from_file with file_path: "/path/to/agent_server_jobs/Job_Name/02_step_name.sql"

This tool:

  1. Parses the file path to extract job name and step ID
  2. Reads the SQL content (skipping metadata header)
  3. Validates SQL syntax using SET PARSEONLY
  4. Updates the job step in SQL Server using sp_update_jobstep

3. Create New Job Steps

Create a new step by adding a SQL file to a job directory:

Use create_job_step_from_file with file_path: "/path/to/agent_server_jobs/Job_Name/my_new_step.sql"

This tool automatically:

  1. Validates/renames the file - If filename doesn't match {step_id}_{step_name}.sql format, it:

    • Scans existing SQL files in the folder to find used step IDs
    • Queries the database for existing step IDs
    • Determines the next available step ID
    • Renames the file (e.g., my_new_step.sql โ†’ 03_my_new_step.sql)
  2. Validates SQL syntax - Checks for syntax errors before creating the step

  3. Creates the step - Uses sp_add_jobstep to create the step in SQL Server

  4. Updates the file - Adds proper metadata header to the SQL file

Parameters:

  • file_path (required): Path to the SQL file
  • database_name (optional): Target database for the step (defaults to 'master')
  • auto_rename (optional): Auto-rename incorrectly named files (defaults to true)

Filename Format

SQL files must follow this naming convention:

{step_id}_{step_name}.sql

Examples:

  • 01_truncate_tables.sql
  • 02_load_data.sql
  • 03_update_statistics.sql
  • 10_cleanup.sql

The step_id determines the execution order in the job.

Prerequisites

ODBC Driver Installation

This package requires the Microsoft ODBC Driver for SQL Server. Install it based on your operating system:

macOS:

brew install unixodbc
brew tap microsoft/mssql-release https://github.com/Microsoft/homebrew-mssql-release
brew install msodbcsql18 mssql-tools18

Ubuntu/Debian:

curl https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -
curl https://packages.microsoft.com/config/ubuntu/$(lsb_release -rs)/prod.list | sudo tee /etc/apt/sources.list.d/mssql-release.list
sudo apt-get update
sudo ACCEPT_EULA=Y apt-get install -y msodbcsql18 mssql-tools18

Windows: Download and install from Microsoft ODBC Driver for SQL Server

Requirements

Python Version

  • Requires: Python >=3.10

Core Dependencies

Package Version Purpose
fastmcp >=2.0.0 High-level MCP framework with automatic schema generation
pyodbc >=5.0.0 ODBC database connectivity for SQL Server
sqlparse >=0.5.0 SQL parsing and formatting

Note: This project uses FastMCP for cleaner, more maintainable code. FastMCP provides automatic JSON schema generation from Python type hints and decorator-based tool definitions.

Optional Dependencies

Azure Integration ([azure])

Package Version Purpose
azure-identity >=1.15.0 Azure Active Directory authentication

Development ([dev])

Package Version Purpose
ruff >=0.4.0 Linting and formatting

Build System

  • Uses hatchling as the build backend

Installation

Using pip

pip install mssql-agent-mcp

With Azure AD Authentication Support

pip install mssql-agent-mcp[azure]

Development Installation

cd mssql-agent-mcp
pip install -e .

Security Configuration

Read-Only Mode (Default)

By default, write operations are disabled for safety. The server runs in read-only mode to prevent accidental data modification.

# Default: Read-only mode enabled (safe for exploration)
MSSQL_READONLY=true

To enable write operations (required for execute, update_procedure_from_file, create_job_step_from_file, etc.):

# Enable write operations (use with caution)
MSSQL_READONLY=false

Environment Variables

Variable Default Description
MSSQL_SERVER localhost SQL Server hostname or IP
MSSQL_DATABASE master Default database
MSSQL_USER (empty) SQL Server username (for SQL auth)
MSSQL_PASSWORD (empty) SQL Server password (for SQL auth)
MSSQL_PORT 1433 SQL Server port
MSSQL_DRIVER ODBC Driver 18 for SQL Server ODBC driver name
MSSQL_ENCRYPT yes Connection encryption (yes/no)
MSSQL_TRUST_SERVER_CERTIFICATE no Trust self-signed certificates (yes/no)
MSSQL_AUTH_MODE sql Authentication mode: sql, windows, or azure
MSSQL_READONLY true Block write operations (true/false)

Authentication Modes

SQL Server Authentication (default):

MSSQL_AUTH_MODE=sql
MSSQL_USER=your_username
MSSQL_PASSWORD=your_password

Windows Authentication (Integrated Security):

MSSQL_AUTH_MODE=windows
# No username/password needed - uses current Windows credentials

Azure AD Authentication:

# Install with Azure support
pip install mssql-agent-mcp[azure]
MSSQL_AUTH_MODE=azure
# Uses DefaultAzureCredential - supports managed identity, Azure CLI, etc.

Cloud Connections (Azure SQL)

For Azure SQL Database, encryption is required:

MSSQL_SERVER=your-server.database.windows.net
MSSQL_ENCRYPT=yes
MSSQL_TRUST_SERVER_CERTIFICATE=no

Configuration

Configure your database connection:

MSSQL_SERVER=localhost
MSSQL_DATABASE=your_database
MSSQL_USER=your_username
MSSQL_PASSWORD=your_password
MSSQL_PORT=1433
MSSQL_READONLY=false  # Enable write operations if needed

Usage with Claude Desktop

Add to your Claude Desktop configuration file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "mssql": {
      "command": "python",
      "args": ["-m", "mssql_mcp.server"],
      "cwd": "/path/to/eagle_eye_sql_agent_job/mssql_db_mcp/src",
      "env": {
        "MSSQL_SERVER": "localhost",
        "MSSQL_DATABASE": "your_database",
        "MSSQL_USER": "your_username",
        "MSSQL_PASSWORD": "your_password",
        "MSSQL_PORT": "1433"
      }
    }
  }
}

Or if installed as a package:

{
  "mcpServers": {
    "mssql": {
      "command": "mssql-agent-mcp",
      "env": {
        "MSSQL_SERVER": "localhost",
        "MSSQL_DATABASE": "your_database",
        "MSSQL_USER": "your_username",
        "MSSQL_PASSWORD": "your_password"
      }
    }
  }
}

Usage with VS Code

Add to your VS Code MCP configuration (.vscode/mcp.json):

{
  "servers": {
    "mssql": {
      "command": "python",
      "args": ["-m", "mssql_mcp.server"],
      "cwd": "${workspaceFolder}/mssql_db_mcp/src",
      "env": {
        "MSSQL_SERVER": "localhost",
        "MSSQL_DATABASE": "your_database",
        "MSSQL_USER": "your_username",
        "MSSQL_PASSWORD": "your_password"
      }
    }
  }
}

Example Tool Usage

Database Operations

Query data

Use the query tool with: SELECT TOP 10 * FROM Customers

List tables

Use the list_tables tool to see all tables in the database

Describe a table

Use the describe_table tool with table: "Customers" to see its structure

Execute statements

Use the execute tool with: INSERT INTO Customers (Name) VALUES ('John Doe')

Stored Procedure Operations

List all procedures in current database

Use list_procedures to see all stored procedures
Optionally set include_definition: true to include the full procedure code

List procedures across all databases

Use list_all_procedures to see procedures from all databases
Optionally set database_filter: "material" to filter by database name

Export procedures to files

Use export_procedures_to_files with output_dir: "/home/user/procedures"
Optionally specify databases: ["materialdb", "salesdb"]

Update a procedure after editing

Use update_procedure_from_file with file_path: "/home/user/procedures/materialdb/dbo/usp_get_data.sql"

SQL Server Agent Job Operations

List all agent jobs

Use list_agent_jobs to see all jobs with their status

Export jobs to files

Use export_enabled_jobs_to_files with output_dir: "/home/user/agent_jobs"

Update an existing step after editing

Use update_job_step_from_file with file_path: "/home/user/agent_jobs/Daily_Backup/02_backup_database.sql"

Create a new step (file will be auto-renamed)

# Create a file: /home/user/agent_jobs/Daily_Backup/new_cleanup_step.sql
# With content: DELETE FROM TempTable WHERE CreatedDate < DATEADD(day, -7, GETDATE())

Use create_job_step_from_file with file_path: "/home/user/agent_jobs/Daily_Backup/new_cleanup_step.sql"

# Result: File renamed to "03_new_cleanup_step.sql" and step created in SQL Server

Development

# Install in development mode
pip install -e .

# Run the server directly
python -m mssql_mcp.server

Requirements

  • Python 3.10+
  • Microsoft SQL Server (any supported version)

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mssql_agent_mcp-1.0.0.tar.gz (19.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mssql_agent_mcp-1.0.0-py3-none-any.whl (23.8 kB view details)

Uploaded Python 3

File details

Details for the file mssql_agent_mcp-1.0.0.tar.gz.

File metadata

  • Download URL: mssql_agent_mcp-1.0.0.tar.gz
  • Upload date:
  • Size: 19.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for mssql_agent_mcp-1.0.0.tar.gz
Algorithm Hash digest
SHA256 430ae1fc2a28cce4b481606936f4e8dadb7dd9400fb986b81585c5b8c6d301f1
MD5 6c6bb3e00a91bd829a34038b1383988a
BLAKE2b-256 a99c568c234935d411d669634b5315e9c11193e83d99a08d468ee4c3d0130040

See more details on using hashes here.

File details

Details for the file mssql_agent_mcp-1.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for mssql_agent_mcp-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 7d716be477c5a0c2abb5b49c605ea41ae0f79c4f48a59c6eebb2946a08f637a9
MD5 f57d8a0e8e6132f1165d0877d81349fd
BLAKE2b-256 e0f159cc0d27fdfe31f5665ac96f59d273c5961ecd6426d8fbb910ff3c8a04f6

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page