📍 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
Before starting, ensure you have:
-
Teradata Database Access
- Host URL, username, password
- Get a free sandbox if needed
-
Required Software
Install the MCP server as a CLI tool:
# Install the server
uv tool install "teradata-mcp-server"
# Test installation
teradata-mcp-server --helpStart 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 allYou 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!
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:
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.!
You now have Teradata MCP Server connected to VS Code and GitHub Copilot!
- 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
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.

