T

Trino

Run SQL queries against a Trino cluster.

·No reviews yet
Repo
Share:

About

Auto-generated

Trino is a Model Context Protocol server in the Data & Databases category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

query
Run a read-only SQL query
list_tables
List tables in the connected database
describe_table
Return column info for a table

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about Trino.

What is the Trino MCP and what can it do?
The Trino MCP allows users to execute SQL queries against a Trino cluster. It integrates Trino's distributed query capabilities into an MCP-compatible client for data warehousing and analytics.
How do I configure the Trino MCP in a client like Claude Desktop?
Configuration typically involves selecting the Trino MCP from the available connectors. You will then need to provide the connection details for your Trino cluster, such as the host and port. Specific steps may vary by client application.
Does the Trino MCP require an API key or other credentials?
The Trino MCP itself does not specify an authentication type and uses 'none'. Authentication to the underlying Trino cluster will depend on your cluster's security configuration, which may involve separate credentials.
What are the capabilities of the Trino MCP?
The Trino MCP exposes the ability to run SQL queries. This allows users to interact with and query data sources connected to their Trino cluster, enabling data exploration and analysis.
Is there a cost associated with using the Trino MCP?
The Trino MCP itself is open-source and provided by the community, implying no direct cost for the connector. However, costs may be incurred from running and maintaining the Trino cluster that this MCP connects to, or from the data sources accessed by Trino.
What is a prerequisite for using the Trino MCP?
A key prerequisite is having an operational Trino cluster accessible from where the MCP client is running. Without a running Trino instance, the MCP will not be able to execute queries.

Install Trino

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "trino": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-trino"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "trino": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-trino"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "trino": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-trino"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.