We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ErikEJ/SqlServer.Rules'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
SingleLineComment.sql•210 B
CREATE PROCEDURE [dbo].[SingleLineComment]
@param1 int = 0,
@param2 int
AS
SET NOCOUNT on;
-- Single Line comments are bad as sciprting with sp_helptext may screw them up
SELECT @param1, @param2
RETURN 0