get-stored-procedure
Retrieve a specific stored procedure by its name from a Microsoft SQL Server database using the SQL Server MCP, enabling streamlined database interactions for AI assistants.
Instructions
Get a specific stored procedure by name
Input Schema
Name | Required | Description | Default |
---|---|---|---|
procedureName | Yes | The name of the stored procedure to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"procedureName": {
"description": "The name of the stored procedure to retrieve",
"type": "string"
}
},
"required": [
"procedureName"
],
"type": "object"
}