Cube
About
Interfaces with Cube.dev's REST API to enable querying and describing data from Cube deployments, simplifying access to complex data structures for automated analysis and natural language exploration of business metrics.
Details
- Author
- isaacwasserman
- Repository
- isaacwasserman/mcp_cube_server
- GitHub stars
- 4
- Downloads
- 300
- License
- GNU General Public License v3.0
- Categories
- AI, Design, Developer Tools, Search, Frontend, Automation, Infrastructure, Database
- Tags
- #analytics
Jump to
- Query Cube REST API via read_data tool.
- Retrieve JSON data through data://{data_id} resource.
- Describe available data using describe_data tool.
- Access deployment description via context://data_description.
- Supports YAML and JSON output formats.
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
CubeCommand (node, npx, python, etc.)npxArguments-
Argument 1
-y -
Argument 2
@highlight/mcp-server
Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
-
Argument 1
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
Install the server (e.g., via Smithery) and configure it with your Cube deployment endpoint. Use the provided tools read_data and describe_data to query data and retrieve metadata; results can also be accessed as JSON resources.
read_data
Accepts a query to the Cube REST API and returns the data in YAML along with a unique identifier for the data returned. This identifier can be used to retrieve a JSON representation of the data from the resource `data://{data_id}`.
describe_data
Describes the data available in the Cube deployment. This is an agentic version of the `context://data_description` resource.
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"cube": {
"env": {},
"args": [
"-y",
"@highlight/mcp-server"
],
"command": "npx"
}
}
}
Linux
{
"env": [],
"args": [
"-y",
"@highlight/mcp-server"
],
"command": "npx"
}
Macos
{
"env": [],
"args": [
"-y",
"@highlight/mcp-server"
],
"command": "npx"
}
Windows
{
"env": [],
"args": [
"/c",
"npx",
"-y",
"@highlight/mcp-server"
],
"command": "cmd"
}
Snowflake Cube Server
MCP Server for Interacting with Cube Semantic Layers
Resources
context://data_description
Contains a description of the data available in the Cube deployment. This is an application controlled version of the describe_data tool.
data://{data_id}
Contains the data returned by a read_data call in JSON format. This resource is meant for MCP clients that wish to format or otherwise process the output of tool calls. See read_data for more.
Tools
read_data
Accepts a query to the Cube REST API and returns the data in YAML along with a unique identifier for the data returned. This identifier can be used to a retrieve a JSON representation of the data from the resource data://{data_id}. See data://{data_id} for more.
describe_data
Describes the data available in the Cube deployment. This is an agentic version of the context://data_description resource.Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.




