Overview
Hubble AI MCP Server is a Solana MCP server designed for data analysis and visualization of transactions on Pumpfun and DEXs using natural language queries.
To use the Hubble MCP server, add it to your MCP configuration file and utilize the provided tools to query blockchain data and generate visualizations.
- Query Pumpfun blockchain data using natural language. - Generate various types of charts for data visualization. - Download generated chart images for local use.
- Analyzing recent Pumpfun transactions.
- Visualizing transaction trends over time.
- Generating charts for presentations or reports.
Add to your AI client
Use these steps to connect Hubble AI for Solana in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"hubble-ai-mcp-hubblevision": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-hubble-ai-mcp-hubblevision"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"hubble-ai-mcp-hubblevision": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-hubble-ai-mcp-hubblevision"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"hubble-ai-mcp-hubblevision": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-hubble-ai-mcp-hubblevision"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"hubble-ai-mcp-hubblevision": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-hubble-ai-mcp-hubblevision"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"hubble-ai-mcp-hubblevision": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-hubble-ai-mcp-hubblevision"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"hubble-ai-mcp-hubblevision": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-hubble-ai-mcp-hubblevision"
]
}
}
}FAQ
What types of queries can I make?
You can ask for the latest transactions, price trends, and generate charts based on your queries.
Is there a limit to the number of transactions I can query?
No, you can specify the number of transactions you want to retrieve in your queries.
What chart types are supported?
The server supports bar charts, line charts, pie charts, doughnut charts, and radar charts.