Trino (Docker) MCP Server
CommunityContributed by tuannvm
Connect to a Trino distributed SQL query engine via Docker. Run queries, explore catalogs, schemas, and tables, and inspect query results across federated data sources in an isolated container.
About the Trino (Docker) MCP Server
The Trino (Docker) MCP server is a local (stdio) Model Context Protocol server available in the McpMux registry. Connect to a Trino distributed SQL query engine via Docker. Run queries, explore catalogs, schemas, and tables, and inspect query results across federated data sources in an isolated container. This is a community-contributed MCP server by tuannvm.
Install the Trino (Docker) MCP server with one click using McpMux. It works with Cursor, Claude Desktop, Claude Code, VS Code, ChatGPT, Windsurf, JetBrains, and any MCP-compatible AI client. This server requires authentication — McpMux securely stores your credentials with AES-256-GCM encryption.
Transport Configuration
{
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"TRINO_HOST",
"-e",
"TRINO_PORT",
"-e",
"TRINO_USER",
"-e",
"TRINO_PASSWORD",
"-e",
"TRINO_SCHEME",
"ghcr.io/tuannvm/mcp-trino:latest"
],
"env": {
"TRINO_HOST": "${input:TRINO_HOST}",
"TRINO_PORT": "${input:TRINO_PORT}",
"TRINO_USER": "${input:TRINO_USER}",
"TRINO_PASSWORD": "${input:TRINO_PASSWORD}",
"TRINO_SCHEME": "${input:TRINO_SCHEME}"
},
"metadata": {
"inputs": [
{
"id": "TRINO_HOST",
"label": "Trino Host",
"description": "Hostname or IP of the Trino coordinator. Use host.docker.internal instead of localhost to reach a Trino instance running on the host machine.",
"type": "text",
"required": true,
"placeholder": "trino.example.com"
},
{
"id": "TRINO_PORT",
"label": "Trino Port",
"description": "Port of the Trino coordinator HTTP(S) endpoint.",
"type": "number",
"required": false,
"default": "8080",
"placeholder": "8080"
},
{
"id": "TRINO_USER",
"label": "Trino User",
"description": "Username to authenticate to Trino.",
"type": "text",
"required": false,
"placeholder": "trino"
},
{
"id": "TRINO_PASSWORD",
"label": "Trino Password",
"description": "Password for the Trino user. Optional â leave empty for clusters that do not require password authentication.",
"type": "text",
"required": false,
"secret": true,
"placeholder": "************"
},
{
"id": "TRINO_SCHEME",
"label": "Trino Scheme",
"description": "Connection scheme for the Trino endpoint. Use http for unsecured local clusters or https for TLS-enabled clusters.",
"type": "text",
"required": false,
"default": "http",
"placeholder": "http"
}
]
}
}Categories
Tags
Supported AI Clients
The Trino (Docker) MCP server works with all MCP-compatible AI clients through McpMux:
Related MCP Servers
MongoDB (Docker)
Connect to MongoDB databases and Atlas clusters via Docker. Query collections, inspect schemas, manage indexes, and run aggregation pipelines in an isolated container.
MongoDB (npx)
Connect to MongoDB databases and Atlas clusters. Query collections, inspect schemas, manage indexes, and run aggregation pipelines through the official MongoDB MCP server.

PostgreSQL (Docker)
Query PostgreSQL databases, analyze performance, and optimize indexes via Docker. Execute SQL, inspect schemas, get EXPLAIN plans, identify slow queries, and run health checks.

PostgreSQL (uvx)
Query PostgreSQL databases, analyze performance, and optimize indexes. Execute SQL, inspect schemas, get EXPLAIN plans, identify slow queries, and run health checks via Postgres MCP Pro.
Redis (Docker)
Interact with Redis databases via Docker. Execute commands, manage keys, and work with data structures across standalone, cluster, and Sentinel modes.
Redis (uvx)
Interact with Redis databases. Execute commands, manage keys, and work with data structures across standalone, cluster, and Sentinel modes.
Install Trino (Docker) with McpMux
One-click install from the McpMux desktop app. Auto-configures for Cursor, Claude, VS Code, ChatGPT, Windsurf, JetBrains, and any MCP-compatible client.