Tiger CLI is the command-line interface for Tiger Cloud. It includes an MCP server for helping coding agents write production-level Postgres code.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"tiger": {
"args": [
"mcp",
"start"
],
"command": "tiger"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Tiger CLI is the command-line interface for Tiger Cloud. It provides commands for managing and querying database services, as well as an integrated Model Context Protocol (MCP) server for use with AI assistants.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in data
Query and manage PostgreSQL databases directly from AI assistants
🔥 Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM clients.
Manage Supabase projects — databases, auth, storage, and edge functions
📄 Production-ready MCP server for PDF processing - 5-10x faster with parallel processing and 94%+ test coverage
MCP Security Weekly
Get CVE alerts and security updates for Tiger Cli and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Tiger CLI is the command-line interface for Tiger Cloud. It provides commands for managing and querying database services, as well as an integrated Model Context Protocol (MCP) server for use with AI assistants.
Multiple installation methods are provided. Choose your preferred method from the options below. If you aren't sure, use the first one!
curl -fsSL https://cli.tigerdata.com | sh
irm https://cli.tigerdata.com/install.ps1 | iex
brew install --cask timescale/tap/tiger-cli
# Add repository
curl -s https://packagecloud.io/install/repositories/timescale/tiger-cli/script.deb.sh | sudo os=any dist=any bash
# Install tiger-cli
sudo apt-get install tiger-cli
For manual repository installation instructions, see here.
# Add repository
curl -s https://packagecloud.io/install/repositories/timescale/tiger-cli/script.rpm.sh | sudo os=rpm_any dist=rpm_any bash
# Install tiger-cli
sudo yum install tiger-cli
For manual repository installation instructions, see here.
go install github.com/timescale/tiger-cli/cmd/tiger@latest
After installing Tiger CLI, authenticate with your Tiger Cloud account:
# Login to your Tiger account
tiger auth login
# View available commands
tiger --help
# List your database services
tiger service list
# Create a new database service
tiger service create --name my-database
# Get connection string
tiger db connection-string
# Connect to your database
tiger db connect
# Install the MCP server
tiger mcp install
Tiger CLI provides the following commands:
tiger auth - Authentication management
login - Log in to your Tiger accountlogout - Log out from your Tiger accountstatus - Show current authentication status and project IDtiger service - Service lifecycle management
list - List all servicescreate - Create a new serviceget - Show detailed service information (aliases: describe, show)fork - Fork an existing servicestart - Start a stopped servicestop - Stop a running serviceresize - Resize service CPU and memory allocationdelete - Delete a serviceupdate-password - Update service master passwordlogs - View service logstiger db - Database operations
connect - Connect to a database with psqlconnection-string - Get connection string for a servicetest-connection - Test database connectivitytiger config - Configuration management
show - Show current configurationset - Set configuration valueunset - Remove configuration valuereset - Reset configuration to defaultstiger mcp - MCP server setup and management
install - Install and configure MCP server for an AI assistantstart - Start the MCP serverlist - List available MCP tools, prompts, and resourcesget - Get detailed information about a specific MCP capability (aliases: describe, show)tiger version - Show version informationUse tiger <command> --help for detailed information about each command.
Tiger CLI includes a Model Context Protocol (MCP) server that enables AI assistants like Claude Code to interact with your Tiger Cloud infrastructure. The MCP server provides programmatic access to database services and operations.
Configure the MCP server for your AI assistant:
# Interactive installation (prompts for client selection)
tiger mcp install
# Or specify your client directly
tiger mcp install claude-code # Claude Code
tiger mcp install codex # Codex
tiger mcp install cursor
... [View full README on GitHub](https://github.com/timescale/tiger-cli#readme)