home / mcp / hubble ai mcp server

Hubble AI MCP Server

Provides AI-powered Solana blockchain data querying and visualization via natural language, backed by an MCP server.

Installation
Add the following to your MCP client configuration file.

Configuration

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

You can deploy and run the Hubble AI MCP Server to query Solana blockchain data with natural language and generate visualizations. This server lets you ask questions like transaction activity or price movements and receive charts and insights in real time, making data analysis more intuitive and actionable.

How to use

You will run the Hubble MCP through a client that can discover and connect to MCP servers. Once connected, you can ask natural language questions to retrieve recent transactions, current token prices, top token holders, and transaction-pattern analyses. You can also request charts such as transaction volume trends, price movements, and distribution analytics. Use structured prompts to request specific visualizations and data slices.

How to install

Prerequisites you need installed on your system before starting:

- Node.js (LTS version) and npm or npx available on your command line.

Follow these steps to install and start the MCP server component:

# Step 1: Prepare your environment (example using a shell)
npx --version
node --version

Step 2: Add the MCP server configuration into your setup. Use the exact MCP JSON snippet shown here to register the hubble tool as a stdio MCP server.

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

Additional setup notes

The server configuration includes an environment variable for authentication or access to the Hubble services. Ensure you replace your_api_key with a valid API key for your Hubble instance.

Configuration and security notes

- Keep your API keys secure. Do not commit them to public repositories. - Use a dedicated API key with scoped permissions appropriate for your usage. - Review access controls and rotate keys periodically to minimize risk.

Examples and usage patterns

Basic natural language queries you can run after the server is up include: 'Show me the latest blockchain transactions' and 'What is the current token price?' For visualizations, request: 'Generate a chart of transaction volume for the last week' or 'Create a line chart of price trends for the past month'.

Available tools

hubble_tool

A tool that enables AI-powered querying and visualization of Solana blockchain data through natural language prompts.