5-Minute Quick Start (Visual Studio Code with GitHub Copilot)
October 6, 2025 ยท View on GitHub
๐ Navigation: Documentation Home | Server Guide | Getting started | Architecture | Installation | Configuration | Security | Customization | Client Guide
๐ฏ Goal: Get a working MCP server connected to VS Code and GitHub Copilot in 5 minutes

โ Prerequisites (2 minutes)
Before starting, ensure you have:
-
Teradata Database Access
- Host URL, username, password
- Get a free sandbox if needed
-
Required Software
๐ Step 1: Install and Test (1 minute)
Install the MCP server as a CLI tool:
# Install the server
uv tool install "teradata-mcp-server"
# Test installation
teradata-mcp-server --help
๐ง Step 2: Start HTTP Server (1 minute)
Start the server in HTTP mode for VS Code:
# Set your database connection
export DATABASE_URI="teradata://username:password@host:1025/database"
# Start HTTP server
teradata-mcp-server --mcp_transport streamable-http --mcp_port 8001 --profile all
You should see:
INFO: Started server process
INFO: Uvicorn running on http://127.0.0.1:8001
Keep this terminal open - the server is now running!
๐ง Step 3: Configure VS Code (1 minute)
Add MCP Server via Command Palette:
- Open Command Palette (Ctrl+Shift+P)
- Type "MCP: Add Server..." and select it
- Choose server type: Select "HTTP (HTTP or Server-Sent Events)"
- Enter the server URL:
http://127.0.0.1:8001/mcp/ - Press Enter to confirm, give your server a name and start it
You should see a configuration as follows in your mcp.json file:

โจ Step 4: Test It (30 seconds)
Test your Teradata MCP connection in VS Code:
- Open the Copilot "Chat" pane
- At the bottom of the chat window, select "Agent" mode, click "Tools"
- Make sure the Teradata MCP server and tools you have just added is selected
Invoke a tool in the chat window:
/dba_databaseVersion
Or direct a question to the server:
@teradata-mcp-server What's in my database?
You should see Copilot use your Teradata MCP server tools.!
๐ What's Next?
You now have Teradata MCP Server connected to VS Code and GitHub Copilot!
For Quick Exploration
- Try different prompts: Ask Copilot about your data schema, run SQL queries
- Explore and customize profiles: Change
"all"to"dataScientist"or"dba"in your server startup - Connect other tools: Other client options
For Production Setup
Use the following resources to deploy the server to a production environment and rollout it to your teams:
- Installation: Available installation methods for remote deployment options.
- Security: Configure authentication for team deployments
- Custom Tools and profiles: Add business-specific tools for your domain
- Detailed VSCode Setup: Full VS Code guide
This quick start gets you running with VS Code and GitHub Copilot. For Claude Desktop, see the Claude Quick Start.