Hubble AI (Solana) MCP server

Provides a bridge to Solana blockchain data through natural language queries, enabling analytics searches, chart generation, and image downloads for visualizing transaction patterns, price movements, and token distributions.
Back to servers
Setup instructions
Provider
HubbleVision
Release date
Mar 14, 2025
Language
TypeScript
Package
Stats
1.5K downloads
5 stars

The Hubble AI for Solana is an analytics tool that allows you to query Solana blockchain data using natural language and generate visualizations. It integrates with AI assistants to provide real-time blockchain insights through a simple interface.

Installation

To add Hubble to your environment, you'll need to include it in your configuration file:

{
  "mcpServers": {
    "hubble-tool": {
      "command": "npx",
      "args": ["-y", "hubble-mcp-tool"],
      "env": {
        "HUBBLE_API_KEY": "your_api_key"
      }
    }
  }
}

Make sure to replace "your_api_key" with your actual Hubble API key.

Usage

Data Querying

You can access Solana blockchain data by using natural language queries. Here are some examples of what you can ask:

  • View recent transactions
  • Check current prices
  • Identify top token holders
  • Analyze transaction patterns

Basic Query Examples

Try these example queries to get started:

"Show me the latest blockchain transactions"
"What is the current token price?"
"Who are the top token holders?"

Data Visualization

Hubble can generate various charts to help you visualize blockchain data:

  • Transaction volume trends
  • Price movements over time
  • Distribution analytics
  • Custom visualizations based on your specific queries

Visualization Query Examples

Use these queries to generate visual representations of data:

"Generate a chart of transaction volume for the last week"
"Create a line chart of price trends for the past month"
"Show a pie chart of top transactions by value"

Configuration Options

When setting up Hubble in your configuration, you can customize the following parameters:

  • command: The command to execute (typically npx)
  • args: Command arguments (-y and hubble-mcp-tool)
  • env: Environment variables, including your HUBBLE_API_KEY

How to install this MCP server

For Claude Code

To add this MCP server to Claude Code, run this command in your terminal:

claude mcp add-json "hubble-tool" '{"command":"npx","args":["-y","hubble-mcp-tool"],"env":{"HUBBLE_API_KEY":"your_api_key"}}'

See the official Claude Code MCP documentation for more details.

For Cursor

There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json file so that it is available in all of your projects.

If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json file.

Adding an MCP server to Cursor globally

To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".

When you click that button the ~/.cursor/mcp.json file will be opened and you can add your server like this:

{
    "mcpServers": {
        "hubble-tool": {
            "command": "npx",
            "args": [
                "-y",
                "hubble-mcp-tool"
            ],
            "env": {
                "HUBBLE_API_KEY": "your_api_key"
            }
        }
    }
}

Adding an MCP server to a project

To add an MCP server to a project you can create a new .cursor/mcp.json file or add it to the existing one. This will look exactly the same as the global MCP server example above.

How to use the MCP server

Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.

The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.

You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.

For Claude Desktop

To add this MCP server to Claude Desktop:

1. Find your configuration file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json

2. Add this to your configuration file:

{
    "mcpServers": {
        "hubble-tool": {
            "command": "npx",
            "args": [
                "-y",
                "hubble-mcp-tool"
            ],
            "env": {
                "HUBBLE_API_KEY": "your_api_key"
            }
        }
    }
}

3. Restart Claude Desktop for the changes to take effect

Want to 10x your AI skills?

Get a free account and learn to code + market your apps using AI (with or without vibes!).

Nah, maybe later