SQL Server Requires Chilkat v11.6.0+
SQL Server
Get the Last JSON-RPC Response from an MCP Server
See more MCP Client Examples
Demonstrates Mcp.GetLastJsonData, which returns the complete JSON-RPC response envelope (the jsonrpc, id, and result members) from the most recent request into a JsonObject.
Tip: Code to parse the returned JSON can be generated with Chilkat's online tool at https://tools.chilkat.io/jsonParse.
Background. This exposes the full protocol-level response for inspection or debugging after any MCP request.
Chilkat SQL Server Downloads
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
DECLARE @hr int
DECLARE @sTmp0 nvarchar(4000)
DECLARE @success int
SELECT @success = 0
DECLARE @mcp int
EXEC @hr = sp_OACreate 'Chilkat.Mcp', @mcp OUT
IF @hr <> 0
BEGIN
PRINT 'Failed to create ActiveX component'
RETURN
END
-- Connect to a public MCP (Model Context Protocol) server over its Streamable HTTP endpoint. The
-- Microsoft Learn MCP server is public and requires no authentication.
EXEC sp_OAMethod @mcp, 'Connect', @success OUT, 'https://learn.microsoft.com/api/mcp'
IF @success = 0
BEGIN
EXEC sp_OAGetProperty @mcp, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @mcp
RETURN
END
-- Perform an MCP request.
DECLARE @toolsResult int
EXEC @hr = sp_OACreate 'Chilkat.JsonObject', @toolsResult OUT
EXEC sp_OAMethod @mcp, 'ListTools', @success OUT, @toolsResult
IF @success = 0
BEGIN
EXEC sp_OAGetProperty @mcp, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @mcp
EXEC @hr = sp_OADestroy @toolsResult
RETURN
END
-- Get the complete JSON-RPC response envelope (the jsonrpc, id, and result members) from the most
-- recent request.
DECLARE @json int
EXEC @hr = sp_OACreate 'Chilkat.JsonObject', @json OUT
EXEC sp_OAMethod @mcp, 'GetLastJsonData', NULL, @json
EXEC sp_OASetProperty @json, 'EmitCompact', 0
EXEC sp_OAMethod @json, 'Emit', @sTmp0 OUT
PRINT @sTmp0
-- JSON parsing code for this result can be generated at Chilkat's online tool:
-- https://tools.chilkat.io/jsonParse
EXEC @hr = sp_OADestroy @mcp
EXEC @hr = sp_OADestroy @toolsResult
EXEC @hr = sp_OADestroy @json
END
GO