From 15e0afa36e86eddfba218646b9c2c2e667eab7e7 Mon Sep 17 00:00:00 2001 From: dtehan-td Date: Mon, 13 Oct 2025 14:25:41 -0700 Subject: [PATCH] update security documentation with VSCode configs --- docs/server_guide/SECURITY.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/docs/server_guide/SECURITY.md b/docs/server_guide/SECURITY.md index 84d545e..115e57b 100644 --- a/docs/server_guide/SECURITY.md +++ b/docs/server_guide/SECURITY.md @@ -208,6 +208,34 @@ Claude Desktop example for Basic with JWT in password (or Bearer): } ``` +Visual Studio Code example of mcp.json file for Basic user:pass: + +``` + "mcp": { + "servers": { + "teradata-http": { + "type": "http", + "url": "http://127.0.0.1:8001/mcp/", + "headers": {"Authorization" : "Basic base64_string"} + } + } + } +``` + +Visual Studio Code example of mcp.json file for JWT + +``` + "mcp": { + "servers": { + "teradata-http": { + "type": "http", + "url": "http://127.0.0.1:8001/mcp/", + "headers": {"Authorization" : "Bearer JWT_Token"} + } + } + } +``` + ### OAuth mode details :warning: **NOT IMPLEMENTED**