5-Minute Quick Start with Claude
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 Claude Desktop 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
- Claude Desktop installed
- uv installed
- macOS:
brew install uv - Windows:
winget install astral-sh.uv, alternativelypip install uv
- macOS:
๐ Step 1: Test the Server (1 minute)
Run this command to validate that you have uvx working and can access the MCP Server package:
uvx teradata-mcp-server --help
If that works, test with your database:
uvx teradata-mcp-server --database_uri "teradata://username:password@host:1025/database"
You should see "NFO Starting MCP server 'teradata-mcp-server' with transport 'stdio'" messages. Press Ctrl+C to stop.
๐ง Step 2: Configure Claude Desktop (2 minutes)
- Open Claude Desktop
- Go to Settings โ Developer โ Edit Config
- Add this configuration (update with your database details):
{
"mcpServers": {
"teradata": {
"command": "uvx",
"args": ["teradata-mcp-server"],
"env": {
"DATABASE_URI": "teradata://USERNAME:PASSWORD@HOST:1025/DATABASE"
}
}
}
}
- Save and restart Claude Desktop
โจ Step 3: Test It Works (30 seconds)
In Claude Desktop, try this prompt:
List the first 5 tables in my database
You should see Claude connect to your Teradata database and return results!
๐ Success! What's Next?
You now have a working Teradata MCP Server! Here are your next options:
For Quick Exploration
- Try different profiles: Change
"all"to"dataScientist"or"dba"in your config - Connect other clients: Visual Studio Code, Google Gemini
For Production Setup
- Security: Configure authentication for team deployments
- Custom Tools: Add business-specific tools for your domain
- Advanced Install: Docker deployment for production
For Development
- Custom Functions: Add your own tools
- Contributing: Developer Guide
๐ Troubleshooting
Server won't start?
- Check your
DATABASE_URIformat - 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 for alternative methods
Claude can't see tools?
- Restart Claude Desktop after config changes
- Check Claude's system messages for connection errors
- Try the test command from Step 1 first
Want more help?
- ๐น Video tutorials
- ๐ Detailed installation guide
- ๐ง Configuration options
This quick start gets you running fast. For production deployments or team setups, see the Installation Guide.