From 8722485ce59ad3c7f0c29b26eeb8756880962dcd Mon Sep 17 00:00:00 2001 From: "Turpaud, Remi" Date: Tue, 30 Sep 2025 17:21:34 +0200 Subject: [PATCH 1/3] added webinar link --- docs/server_guide/VIDEO_LIBRARY.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/server_guide/VIDEO_LIBRARY.md b/docs/server_guide/VIDEO_LIBRARY.md index 2f303b5..0a79592 100644 --- a/docs/server_guide/VIDEO_LIBRARY.md +++ b/docs/server_guide/VIDEO_LIBRARY.md @@ -3,6 +3,7 @@ The video library is a curation of videos that the community believes would be valuable for new members. ## Demo's +[Server Overview and demo](https://www.teradata.com/insights/videos/build-ai-agents-using-mcp-server) - Overview of the MCP server and demo of Exploratory Data Analysis, Data Lineage, DBA use cases and building a simple voice assistant. [DBA use cases](https://www.youtube.com/watch?v=CYUs1tRoO1M&t=14s) - this demo is a short overview of the server along with some simple DBA use cases. From 79a6f170f87fd4392dbbf1862693a7930026187e Mon Sep 17 00:00:00 2001 From: "Turpaud, Remi" Date: Tue, 30 Sep 2025 17:25:25 +0200 Subject: [PATCH 2/3] added troubleshooting hints --- docs/server_guide/QUICK_START.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/server_guide/QUICK_START.md b/docs/server_guide/QUICK_START.md index 88ec619..6a94214 100644 --- a/docs/server_guide/QUICK_START.md +++ b/docs/server_guide/QUICK_START.md @@ -89,7 +89,8 @@ You should see Claude connect to your Teradata database and return results! **Server won't start?** - Check your `DATABASE_URI` format -- Verify database connectivity: `ping your-host` +- Check if the tool works with the --help arguments. Eg. `teradata-mcp-server --version` +- Force update to the latest version `uvx teradata-mcp-server --no-cache` - Rollback to a prior version changing your config file: `"args": ["teradata-mcp-server==0.1.3", "--profile", "all"],` - See [Installation Guide](INSTALLATION.md) for alternative methods From c46ab2e3f7d2cd64e0f6bdbf78d88ab963850220 Mon Sep 17 00:00:00 2001 From: "Turpaud, Remi" Date: Tue, 30 Sep 2025 17:26:20 +0200 Subject: [PATCH 3/3] added pip as an alternative uv install for windows --- docs/server_guide/QUICK_START.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/server_guide/QUICK_START.md b/docs/server_guide/QUICK_START.md index 6a94214..bb39fec 100644 --- a/docs/server_guide/QUICK_START.md +++ b/docs/server_guide/QUICK_START.md @@ -18,7 +18,7 @@ Before starting, ensure you have: - [Claude Desktop](https://claude.ai/download) installed - [uv](https://docs.astral.sh/uv/getting-started/installation/) installed - macOS: `brew install uv` - - Windows: `winget install astral-sh.uv` + - Windows: `winget install astral-sh.uv`, alternatively `pip install uv` ## 🚀 Step 1: Test the Server (1 minute)