GalaConnect MCP Server
Galachain MCP server for use with LLMs
IndiaJonathan
README
GalaConnect MCP Server
This is a Model Context Protocol (MCP) server that provides access to Galascan APIs. Currently, it supports the following tools:
galaconnect_chain_coin_info_all
: Retrieves comprehensive data for all coins in the Gala ecosystem.galaconnect_burned_today
: Retrieves data on tokens burned today in the Gala ecosystem.galaconnect_all_transactions
: Retrieves recent transactions from the Gala blockchain.galaconnect_coin_info
: Retrieves detailed information about various cryptocurrencies including Gala ecosystem coins.galaconnect_circulating_supply_metrics
: Retrieves metrics about the circulating supply in the Gala ecosystem.
Installation
npm install
npm run build
Usage
To use this server with Claude:
<use_tools name="galaconnect_chain_coin_info_all" />
<use_tools name="galaconnect_burned_today" />
<use_tools name="galaconnect_all_transactions" />
<use_tools name="galaconnect_coin_info" />
<use_tools name="galaconnect_circulating_supply_metrics" />
When calling the galaconnect_all_transactions tool, you can specify a limit parameter to control the number of transactions returned:
You can use the galaconnect_all_transactions tool with a limit of 5 transactions.
Tools
galaconnect_chain_coin_info_all
Retrieves comprehensive data for all coins in the Gala ecosystem.
Input: No parameters required.
Output: JSON object containing detailed information about all Gala ecosystem coins, with each coin having the following metrics:
- Symbol and supply information
- Transaction volume and number of holders
- Mint and burn metrics (all-time and last 24h)
- Current price and price change percentage (24h)
- Circulating supply and market capitalization
- Timestamps for last updates
galaconnect_burned_today
Retrieves data on tokens burned today in the Gala ecosystem.
Input: No parameters required.
Output: JSON array containing tokens burned today with the following information:
burned
: The amount of tokens burned todaytoken
: The token symbol
galaconnect_all_transactions
Retrieves recent transactions from the Gala blockchain.
Input:
limit
(optional): Maximum number of transactions to return. Defaults to 20 if not specified.
Output: JSON array containing detailed information about recent transactions, including:
TransactionHash
: Unique identifier for the transactionMethod
: Operation performed (e.g., MintToken, TransferToken, BurnTokens)Channel
: The blockchain channel used for the transactionBlock
: Block number where the transaction was recordedSecondsAgo
: Time elapsed since the transaction occurredCreatedAt
: Timestamp when the transaction was createdFromWallet
: Source wallet addressToWallet
: Destination wallet addressAmount
: Quantity and token symbol transferredtoken_path
: Complete path information for the tokenFee
: Transaction fee amountis_nft
: Flag indicating if the transaction involves an NFT (1) or not (0)
galaconnect_coin_info
Retrieves information about various cryptocurrencies including Gala ecosystem coins.
Input: No parameters required.
Output: JSON array containing detailed information about cryptocurrencies, with each coin having the following metrics:
id
: Unique identifier for the coinsymbol
: Trading symbol for the coin (e.g., "gala", "usdt")name
: Full name of the cryptocurrencyimage
: URL to the coin's logo imagecurrent_price
: Current trading price in USDmarket_cap
: Total market capitalizationmarket_cap_rank
: Ranking based on market capfully_diluted_valuation
: Valuation if all coins were in circulationtotal_volume
: 24-hour trading volumehigh_24h
/low_24h
: Highest and lowest prices in the last 24 hoursprice_change_24h
: Absolute price change in the last 24 hoursprice_change_percentage_24h
: Percentage price change in the last 24 hoursmarket_cap_change_24h
: Change in market cap in the last 24 hoursmarket_cap_change_percentage_24h
: Percentage change in market cap- Supply information:
circulating_supply
,total_supply
,max_supply
- All-time high/low data:
ath
,atl
,ath_date
,atl_date
,ath_change_percentage
,atl_change_percentage
last_updated
: Timestamp of when the data was last updated
galaconnect_circulating_supply_metrics
Retrieves metrics about the circulating supply in the Gala ecosystem.
Input: No parameters required.
Output: JSON array containing information about circulating supply metrics:
gc_mint_allowance
: The current mint allowance for Gala Chaingc_balance
: The current balance on Gala Chaineth_circulating_supply
: The current circulating supply on Ethereum
Development
This server connects to the Galascan API at http://galascan.gala.com/api/chain-coin-info-all
to retrieve comprehensive coin information.
To run the server in development mode:
npm run watch
Configuration
To configure this MCP server in Cursor or similar environments:
"galaconnect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"galaconnect-mcp"
],
"env": {}
}
You can build the Docker image with:
docker build -t galaconnect-mcp -f Dockerfile .
This MCP server operates over stdio (standard input/output) rather than a network port, making it suitable for direct integration with LLM platforms that support the Model Context Protocol.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
MCP Package Docs Server
Facilitates LLMs to efficiently access and fetch structured documentation for packages in Go, Python, and NPM, enhancing software development with multi-language support and performance optimization.
Claude Code MCP
An implementation of Claude Code as a Model Context Protocol server that enables using Claude's software engineering capabilities (code generation, editing, reviewing, and file operations) through the standardized MCP interface.
@kazuph/mcp-taskmanager
Model Context Protocol server for Task Management. This allows Claude Desktop (or any MCP client) to manage and execute tasks in a queue-based system.
Linear MCP Server
Enables interaction with Linear's API for managing issues, teams, and projects programmatically through the Model Context Protocol.
mermaid-mcp-server
A Model Context Protocol (MCP) server that converts Mermaid diagrams to PNG images.
Jira-Context-MCP
MCP server to provide Jira Tickets information to AI coding agents like Cursor

Linear MCP Server
A Model Context Protocol server that integrates with Linear's issue tracking system, allowing LLMs to create, update, search, and comment on Linear issues through natural language interactions.

Sequential Thinking MCP Server
This server facilitates structured problem-solving by breaking down complex issues into sequential steps, supporting revisions, and enabling multiple solution paths through full MCP integration.