Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

No arguments

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": true
}
prompts
{
  "listChanged": true
}
resources
{
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
avax_search_docsA

Full-text search over the official Avalanche knowledge base (build.avax.network docs, Academy, 234 integrations, blog, all ACPs, AvalancheGo/Subnet-EVM READMEs & precompile docs, ICM/Teleporter contracts, Avalanche CLI command reference, starter kit).

Use this FIRST for any "how do I…", "what is…", "which precompile/config/command…" question about Avalanche, L1s/Subnets, Subnet-EVM, ICM/Teleporter/Warp, P-Chain staking, validators, Avalanche CLI, SDKs, RPC methods.

Args:

  • query: natural language or keywords (e.g. "native minter precompile genesis", "convert subnet to L1", "teleporter send message fuji")

  • source: optional filter: docs | academy | integrations (234 ecosystem integrations: oracles, bridges, indexers, wallets, RPC providers…) | blog | acps (Avalanche Community Proposals) | avalanchego | icm | cli | starter-kit

  • path_prefix: optional path filter, e.g. "content/docs/avalanche-l1s", "content/academy/avalanche-l1", "graft/subnet-evm"

  • limit: max hits (default 8)

Returns ranked snippets with title, heading, url and path. Call avax_get_doc with a hit's path to read the full page.

avax_get_docA

Return the full text of a documentation page by its path (from avax_search_docs / avax_list_docs) or its build.avax.network URL. Long pages are truncated at 25k chars; use offset to continue.

avax_list_docsA

List documentation pages under a path prefix (e.g. 'content/docs/avalanche-l1s', 'content/docs/rpcs', 'content/academy/avalanche-l1', 'graft/subnet-evm'). Use to browse a section's table of contents.

avax_list_topicsA

Overview of the indexed Avalanche knowledge base: top-level sections with document counts, plus index build date. Use to orient before searching.

avax_get_guideA

Return a curated, condensed guide bundled with this server. Available: architecture (Primary Network (P/X/C), L1s, VMs, consensus – the mental model every builder needs.); launch-l1 (From avalanche blockchain create to a sovereign L1 on Fuji/mainnet, with validators and ICM.); precompiles (Addresses, genesis keys and when to use each of the 6 built-in precompiles.); icm (Send a message or tokens between C-Chain and an L1 (or L1↔L1) with Teleporter, with addresses and a Solidity recipe.); troubleshooting (Fast lookup of frequent failures on C-Chain, L1s, CLI, ICM and RPC.); gas-and-fees (How fees work on C-Chain vs L1s and how to pick feeConfig values in genesis.). Prefer this for orientation, then avax_search_docs for details.

avax_explain_precompileA

Reference card for one Subnet-EVM precompile: address, genesis config key, purpose, example genesis snippet, Solidity interface notes, plus the most relevant doc hits.

avax_generate_genesisA

Generate a valid Subnet-EVM genesis.json for a new Avalanche L1. Choose a fee preset (low|medium|high|gasless) or override feeConfig, allocate initial balances, and enable precompiles (deployer allow-list, tx allow-list, native minter, fee manager, reward manager, warp). Warp is enabled by default because ICM/Teleporter needs it. Returns the JSON plus next-step CLI commands.

avax_plan_l1_launchA

Produce a tailored, step-by-step launch plan for a new Avalanche L1 given the use case: consensus mode (PoA/PoS), validator count, gas/token choices, precompile recommendations, ICM, cost estimate and exact CLI commands. Use before avax_generate_genesis.

avax_icm_recipeB

Return the addresses, blockchain-ID lookup steps, Solidity sender/receiver skeleton and relayer commands for sending ICM messages between two Avalanche chains.

avax_troubleshootA

Given an error message or symptom (RPC error, CLI output, revert reason, ICM delivery issue), return likely causes, fixes, and matching documentation.

avax_acp_listA

List all ACPs (Avalanche Community Proposals) with structured fields: number, title, status (Activated | Implementable | Proposed | Stale), track (Standards | Best Practices | Meta | Subnet), authors, replaces/dependencies. Offline — parsed from avalanche-foundation/ACPs. Use to answer 'which upgrades are live?', 'what changed in Etna/Fortuna?'.

avax_acp_lookupA

Get one ACP by number or title keyword: preamble fields (status, track, authors, replaces, dependencies, discussion link), abstract, and the full text (truncated). Offline.

avax_acp_votesA

Query a public node's info.acps for ACPs currently being signaled (supported/objected weight) on mainnet or fuji. Empty when no ACP vote is in progress.

avax_upgrade_lookupA

Structured history of Avalanche Primary Network upgrades: name, AvalancheGo version, Fuji/mainnet activation dates, status, chains affected (P/X/C/L1s), included ACPs, developer impact and source docs. Omit query for the full timeline; pass an upgrade name ('Helicon', 'Etna'), version ('v1.14.0') or ACP number ('ACP-194') for one entry. Pair with avax_acp_lookup and avax_get_doc for full detail.

avax_fetch_live_docA

Fetch the CURRENT version of any build.avax.network page (docs, academy, integrations, blog, acps) as clean markdown via the official .md endpoint. Use when the local index may be stale (check builtAt in avax_list_topics) or for pages not indexed. Accepts a full URL or a site path like /docs/primary-network/overview.

avax_console_flowsA

List Builder Console (build.avax.network/console) no-code flows with deep links: create-l1, convert-to-l1, validator-manager, ictt, faucet, multisig, unit-converter, icm-relayer. Also returns platform-cli equivalents for scriptable automation. Pass flow for one entry.

avax_hosted_list_toolsA

List the ~48 tools exposed by Ava Labs' hosted MCP (https://build.avax.network/api/mcp): docs_search (incl. blog/integrations), cli_lookup_command (avalanche-cli/platform-cli/tmpnet), rpc_lookup_method, acp_lookup, platform_get_* (incl. get_validators_at, get_utxos, get_pending_validators), info_* (info_peers, info_is_bootstrapped), onchain_*/chain_stats, build_plan (runbooks), console_flow/console_link. (GitHub code-search tools are documented but not currently exposed.) Then call avax_hosted_call. Rate limit 60/min — prefer local tools when equivalent.

avax_hosted_callA

Proxy a tool call to Ava Labs' hosted Avalanche MCP (https://build.avax.network/api/mcp). Best for things the local index lacks: build_plan (platform-cli runbooks; pass chainId as a STRING), cli_lookup_command, rpc_lookup_method, docs_search (always-current), platform_get_validators_at, platform_get_pending_validators, info_peers, onchain_activity. On 429 fall back to local tools.

avax_hosted_read_indexA

Read one of the hosted MCP's index resources: docs://index, academy://index, integrations://index, blog://index, rpcs://index, cli://index, acps://index — markdown link lists of every page, always current.

avax_search_integrationsA

Find Avalanche ecosystem integrations (234 entries: oracles, bridges, indexers, RPC providers, wallets, account abstraction, x402, analytics…) by keyword or category. Offline. Returns name, category, chains available, website/docs links.

avax_list_networksA

List all networks this server knows: Avalanche Mainnet C-Chain, Fuji testnet, and well-known L1s, with chain IDs, RPC URLs, explorers and faucets. Call this first when unsure which network value to use.

avax_get_balanceA

Get the native token balance (AVAX on C-Chain/Fuji, or the L1's native token) of an address on an Avalanche EVM chain.

Network: "mainnet" (C-Chain), "fuji" (testnet C-Chain), a known L1 key (mainnet, c-chain, fuji, dexalot, beam, dfk, dispatch-fuji, echo-fuji), or a full RPC URL. Returns wei and a formatted value.

avax_get_chain_statusA

Get live status of an Avalanche EVM chain: reported chainId, latest block number, base fee, gas price. Useful to verify an RPC works and to pick gas settings.

Network: "mainnet" (C-Chain), "fuji" (testnet C-Chain), a known L1 key (mainnet, c-chain, fuji, dexalot, beam, dfk, dispatch-fuji, echo-fuji), or a full RPC URL.

avax_get_blockA

Fetch a block by number, hash, or tag ('latest'). Returns header fields and transaction hashes (set include_transactions=true for full tx objects).

Network: "mainnet" (C-Chain), "fuji" (testnet C-Chain), a known L1 key (mainnet, c-chain, fuji, dexalot, beam, dfk, dispatch-fuji, echo-fuji), or a full RPC URL.

avax_get_transactionA

Fetch a transaction and its receipt by hash (status, gas used, logs, contract address created).

Network: "mainnet" (C-Chain), "fuji" (testnet C-Chain), a known L1 key (mainnet, c-chain, fuji, dexalot, beam, dfk, dispatch-fuji, echo-fuji), or a full RPC URL.

avax_get_codeA

Return whether an address is a contract and its bytecode size (and bytecode prefix). Use to verify deployments.

Network: "mainnet" (C-Chain), "fuji" (testnet C-Chain), a known L1 key (mainnet, c-chain, fuji, dexalot, beam, dfk, dispatch-fuji, echo-fuji), or a full RPC URL.

avax_call_contractB

Call a read-only (view/pure) contract function. Provide the function as a human-readable ABI signature, e.g. 'function balanceOf(address) view returns (uint256)', plus args.

Network: "mainnet" (C-Chain), "fuji" (testnet C-Chain), a known L1 key (mainnet, c-chain, fuji, dexalot, beam, dfk, dispatch-fuji, echo-fuji), or a full RPC URL.

avax_estimate_gasA

Estimate gas for a transaction (to, data, value, from). Also returns current base fee so the agent can compute a fee budget.

Network: "mainnet" (C-Chain), "fuji" (testnet C-Chain), a known L1 key (mainnet, c-chain, fuji, dexalot, beam, dfk, dispatch-fuji, echo-fuji), or a full RPC URL.

avax_pchain_get_validatorsA

List current validators of the Primary Network or of a specific Subnet/L1 via platform.getCurrentValidators. Returns nodeID, stake, uptime, end time, delegation fee. Use subnet_id to inspect an L1's validator set; omit for Primary Network.

avax_pchain_get_subnetA

Get Subnet details via platform.getSubnet: control keys, threshold, whether it has been converted to a sovereign L1 (isPermissioned=false), manager chain/address, and blockchains in the subnet.

avax_pchain_list_blockchainsA

List all blockchains registered on the P-Chain (platform.getBlockchains) with their subnet and VM IDs. Supports name filtering and pagination.

avax_pchain_get_stake_infoA

Return P-Chain staking economics: min validator/delegator stake, min/max stake durations, current supply, and total stake. Use when designing validator economics or answering 'how much AVAX do I need to validate?'.

avax_pchain_get_tx_statusA

Check a P-Chain transaction (platform.getTxStatus): Committed, Processing, Dropped, or Unknown, with reason when dropped. Use after AddSubnetValidator/ConvertSubnetToL1/CreateChain transactions.

avax_pchain_get_balanceA

Get P-Chain balance of a P-addr (e.g. P-fuji1...): unlocked, locked stakeable, locked not stakeable. Needed before creating subnets/chains or adding validators.

avax_xchain_get_balanceB

Get X-Chain AVAX (or any asset) balance for an X-addr (avm.getBalance).

avax_node_infoA

Query the public API node's info.* endpoints: node version, network ID/name, blockchain IDs for X/C/P, and tx fees (info.getTxFee). Useful to confirm which network you're on and current P-Chain fees.

avax_data_list_chainsA

List every chain (C-Chain + L1s) indexed by the Avalanche Data API (Glacier), with chain ID, name, RPC, explorer, native token and whether it's testnet. Best way to discover L1s beyond the built-in registry.

avax_data_list_erc20_balancesA

List all ERC-20 token balances held by an address on a chain (Avalanche Data API). Returns token address, symbol, decimals, and balance.

avax_data_list_transactionsA

List recent transactions of an address on a chain (native + contract interactions) via Avalanche Data API. Paginated.

avax_data_get_token_metadataA

Get metadata for a contract address (ERC-20/721/1155 type, name, symbol, decimals, deployment tx) via Avalanche Data API.

avax_data_list_l1_validatorsA

List sovereign L1 validators (post-Etna ACP-77) from the Data API, optionally filtered by subnet ID or node ID. Shows weight, balance, and remaining balance owner.

Prompts

Interactive templates invoked by user choice

NameDescription
avalanche_launch_l1Guided workflow: design, genesis, local test, Fuji/mainnet deploy, validators, ICM.
avalanche_deploy_contractFoundry/Hardhat deployment to C-Chain (Fuji/mainnet) or an L1, with verification and gas guidance.
avalanche_icm_bridgeSend messages or tokens between two Avalanche chains with Teleporter/ICTT.
avalanche_learnStructured explanation of any Avalanche concept with citations.

Resources

Contextual data attached and managed by the client

NameDescription
networksChain IDs, RPC URLs, explorers, faucets for Mainnet, Fuji and known L1s.
architecturePrimary Network (P/X/C), L1s, VMs, consensus – the mental model every builder needs.
launch-l1From `avalanche blockchain create` to a sovereign L1 on Fuji/mainnet, with validators and ICM.
precompilesAddresses, genesis keys and when to use each of the 6 built-in precompiles.
icmSend a message or tokens between C-Chain and an L1 (or L1↔L1) with Teleporter, with addresses and a Solidity recipe.
troubleshootingFast lookup of frequent failures on C-Chain, L1s, CLI, ICM and RPC.
gas-and-feesHow fees work on C-Chain vs L1s and how to pick feeConfig values in genesis.
content/docs/api-reference/data-api/data-vs-rpc.mdxIndexed pages from build.avax.network and core repos.
content/docs/api-reference/data-api/getting-started.mdxIndexed pages from build.avax.network and core repos.
content/docs/api-reference/data-api/index.mdxIndexed pages from build.avax.network and core repos.
content/docs/api-reference/data-api/rate-limits.mdxIndexed pages from build.avax.network and core repos.
content/docs/api-reference/data-api/snowflake.mdxIndexed pages from build.avax.network and core repos.
content/docs/api-reference/data-api/usage.mdxIndexed pages from build.avax.network and core repos.
content/docs/api-reference/metrics-api/getting-started.mdxIndexed pages from build.avax.network and core repos.
content/docs/api-reference/metrics-api/index.mdxIndexed pages from build.avax.network and core repos.
content/docs/api-reference/metrics-api/rate-limits.mdxIndexed pages from build.avax.network and core repos.
content/docs/api-reference/metrics-api/usage-guide.mdxIndexed pages from build.avax.network and core repos.
content/docs/api-reference/webhook-api/index.mdxIndexed pages from build.avax.network and core repos.
content/docs/api-reference/webhook-api/rate-limits.mdxIndexed pages from build.avax.network and core repos.
content/docs/api-reference/webhook-api/retries.mdxIndexed pages from build.avax.network and core repos.
content/docs/api-reference/webhook-api/tutorials/erc20transfer.mdxIndexed pages from build.avax.network and core repos.
content/docs/api-reference/webhook-api/tutorials/erc721transfer.mdxIndexed pages from build.avax.network and core repos.
content/docs/api-reference/webhook-api/tutorials/monitor-multiple-addresses.mdxIndexed pages from build.avax.network and core repos.
content/docs/api-reference/webhook-api/tutorials/push.mdxIndexed pages from build.avax.network and core repos.
content/docs/api-reference/webhook-api/webhooks-signature.mdxIndexed pages from build.avax.network and core repos.
content/docs/api-reference/webhook-api/wss-vs-webhooks.mdxIndexed pages from build.avax.network and core repos.
content/docs/avalanche-l1s/add-utility/deploy-smart-contract.mdxIndexed pages from build.avax.network and core repos.
content/docs/avalanche-l1s/add-utility/testnet-faucet.mdxIndexed pages from build.avax.network and core repos.
content/docs/avalanche-l1s/custom-precompiles/background-requirements.mdxIndexed pages from build.avax.network and core repos.
content/docs/avalanche-l1s/custom-precompiles/create-precompile.mdxIndexed pages from build.avax.network and core repos.
content/docs/avalanche-l1s/custom-precompiles/defining-precompile.mdxIndexed pages from build.avax.network and core repos.
content/docs/avalanche-l1s/custom-precompiles/defining-test-cases.mdxIndexed pages from build.avax.network and core repos.
content/docs/avalanche-l1s/custom-precompiles/executing-test-cases.mdxIndexed pages from build.avax.network and core repos.
content/docs/avalanche-l1s/custom-precompiles/index.mdxIndexed pages from build.avax.network and core repos.
content/docs/avalanche-l1s/custom-precompiles/precompile-deployment.mdxIndexed pages from build.avax.network and core repos.
content/docs/avalanche-l1s/deploy-a-avalanche-l1/cli_structure.mdIndexed pages from build.avax.network and core repos.
content/docs/avalanche-l1s/evm-configuration/customize-avalanche-l1.mdxIndexed pages from build.avax.network and core repos.
content/docs/avalanche-l1s/evm-configuration/evm-l1-customization.mdxIndexed pages from build.avax.network and core repos.
content/docs/avalanche-l1s/golang-vms/complex-golang-vm.mdxIndexed pages from build.avax.network and core repos.
content/docs/avalanche-l1s/golang-vms/simple-golang-vm.mdxIndexed pages from build.avax.network and core repos.
content/docs/avalanche-l1s/index.mdxIndexed pages from build.avax.network and core repos.
content/docs/avalanche-l1s/precompiles/allowlist-interface.mdxIndexed pages from build.avax.network and core repos.
content/docs/avalanche-l1s/precompiles/deployer-allowlist.mdxIndexed pages from build.avax.network and core repos.
content/docs/avalanche-l1s/precompiles/fee-manager.mdxIndexed pages from build.avax.network and core repos.
content/docs/avalanche-l1s/precompiles/interacting-with-precompiles.mdxIndexed pages from build.avax.network and core repos.
content/docs/avalanche-l1s/precompiles/native-minter.mdxIndexed pages from build.avax.network and core repos.
content/docs/avalanche-l1s/precompiles/reward-manager.mdxIndexed pages from build.avax.network and core repos.
content/docs/avalanche-l1s/precompiles/transaction-allowlist.mdxIndexed pages from build.avax.network and core repos.
content/docs/avalanche-l1s/precompiles/warp-messenger.mdxIndexed pages from build.avax.network and core repos.
content/docs/avalanche-l1s/rust-vms/installing-vm.mdxIndexed pages from build.avax.network and core repos.
content/docs/avalanche-l1s/rust-vms/intro-avalanche-rs.mdxIndexed pages from build.avax.network and core repos.
content/docs/avalanche-l1s/rust-vms/setting-up-environment.mdxIndexed pages from build.avax.network and core repos.
content/docs/avalanche-l1s/simple-vm-any-language.mdxIndexed pages from build.avax.network and core repos.
content/docs/avalanche-l1s/timestamp-vm/apis.mdxIndexed pages from build.avax.network and core repos.
content/docs/avalanche-l1s/timestamp-vm/blocks.mdxIndexed pages from build.avax.network and core repos.
content/docs/avalanche-l1s/timestamp-vm/defining-vm-itself.mdxIndexed pages from build.avax.network and core repos.
content/docs/avalanche-l1s/timestamp-vm/introduction.mdxIndexed pages from build.avax.network and core repos.
content/docs/avalanche-l1s/timestamp-vm/state.mdxIndexed pages from build.avax.network and core repos.
content/docs/avalanche-l1s/upgrade/considerations.mdxIndexed pages from build.avax.network and core repos.
content/docs/avalanche-l1s/upgrade/precompile-upgrades.mdxIndexed pages from build.avax.network and core repos.
content/docs/avalanche-l1s/validator-manager/registration-flow.mdxIndexed pages from build.avax.network and core repos.
content/docs/avalanche-l1s/virtual-machines-index.mdxIndexed pages from build.avax.network and core repos.
content/docs/avalanche-l1s/wagmi-avalanche-l1.mdxIndexed pages from build.avax.network and core repos.
content/docs/cross-chain/avalanche-warp-messaging/overview.mdxIndexed pages from build.avax.network and core repos.
content/docs/cross-chain/icm-contracts/addresses.mdxIndexed pages from build.avax.network and core repos.
content/docs/cross-chain/icm-contracts/cli.mdxIndexed pages from build.avax.network and core repos.
content/docs/cross-chain/icm-contracts/getting-started.mdxIndexed pages from build.avax.network and core repos.
content/docs/cross-chain/icm-contracts/icm-contracts-on-devnet.mdxIndexed pages from build.avax.network and core repos.
content/docs/cross-chain/icm-contracts/icm-contracts-on-local-network.mdxIndexed pages from build.avax.network and core repos.
content/docs/cross-chain/icm-contracts/overview.mdxIndexed pages from build.avax.network and core repos.
content/docs/cross-chain/icm-contracts/upgradeability.mdxIndexed pages from build.avax.network and core repos.
content/docs/cross-chain/index.mdxIndexed pages from build.avax.network and core repos.
content/docs/nodes/architecture/consensus.mdxIndexed pages from build.avax.network and core repos.
content/docs/nodes/architecture/core-components.mdxIndexed pages from build.avax.network and core repos.
content/docs/nodes/architecture/execution/continuous-execution.mdxIndexed pages from build.avax.network and core repos.
content/docs/nodes/architecture/execution/firewood.mdxIndexed pages from build.avax.network and core repos.
content/docs/nodes/architecture/execution/index.mdxIndexed pages from build.avax.network and core repos.
content/docs/nodes/architecture/index.mdxIndexed pages from build.avax.network and core repos.
content/docs/nodes/architecture/networking.mdxIndexed pages from build.avax.network and core repos.
content/docs/nodes/architecture/proposervm.mdxIndexed pages from build.avax.network and core repos.
content/docs/nodes/architecture/virtual-machines.mdxIndexed pages from build.avax.network and core repos.
content/docs/nodes/chain-configs/avalanche-l1s/avalanche-l1-configs.mdxIndexed pages from build.avax.network and core repos.
content/docs/nodes/chain-configs/avalanche-l1s/subnet-evm.mdxIndexed pages from build.avax.network and core repos.
content/docs/nodes/index.mdxIndexed pages from build.avax.network and core repos.
content/docs/nodes/maintain/backup-restore.mdxIndexed pages from build.avax.network and core repos.
content/docs/nodes/maintain/cube-signer-sidecar.mdxIndexed pages from build.avax.network and core repos.
content/docs/nodes/maintain/enroll-in-avalanche-notify.mdxIndexed pages from build.avax.network and core repos.
content/docs/nodes/maintain/monitoring.mdxIndexed pages from build.avax.network and core repos.
content/docs/nodes/maintain/recommended-metrics.mdxIndexed pages from build.avax.network and core repos.
content/docs/nodes/maintain/run-as-background-service.mdxIndexed pages from build.avax.network and core repos.
content/docs/nodes/maintain/upgrade.mdxIndexed pages from build.avax.network and core repos.
content/docs/nodes/node-storage/chain-state-management.mdxIndexed pages from build.avax.network and core repos.
content/docs/nodes/node-storage/periodic-state-sync.mdxIndexed pages from build.avax.network and core repos.
content/docs/nodes/node-storage/state-sync-snapshot-deletion.mdxIndexed pages from build.avax.network and core repos.
content/docs/nodes/run-a-node/avalanche-l1-nodes.mdxIndexed pages from build.avax.network and core repos.
content/docs/nodes/run-a-node/common-errors.mdxIndexed pages from build.avax.network and core repos.
content/docs/nodes/run-a-node/from-source.mdxIndexed pages from build.avax.network and core repos.
content/docs/nodes/run-a-node/index.mdxIndexed pages from build.avax.network and core repos.
content/docs/nodes/run-a-node/on-third-party-services/amazon-web-services.mdxIndexed pages from build.avax.network and core repos.
content/docs/nodes/run-a-node/on-third-party-services/aws-marketplace.mdxIndexed pages from build.avax.network and core repos.
content/docs/nodes/run-a-node/on-third-party-services/google-cloud.mdxIndexed pages from build.avax.network and core repos.
content/docs/nodes/run-a-node/on-third-party-services/latitude.mdxIndexed pages from build.avax.network and core repos.
content/docs/nodes/run-a-node/on-third-party-services/microsoft-azure.mdxIndexed pages from build.avax.network and core repos.
content/docs/nodes/run-a-node/using-binary.mdxIndexed pages from build.avax.network and core repos.
content/docs/nodes/run-a-node/using-docker.mdxIndexed pages from build.avax.network and core repos.
content/docs/nodes/run-a-node/using-install-script/installing-avalanche-go.mdxIndexed pages from build.avax.network and core repos.
content/docs/nodes/run-a-node/using-install-script/managing-avalanche-go.mdxIndexed pages from build.avax.network and core repos.
content/docs/nodes/run-a-node/using-install-script/node-config-maintenance.mdxIndexed pages from build.avax.network and core repos.
content/docs/nodes/run-a-node/using-install-script/preparing-environment.mdxIndexed pages from build.avax.network and core repos.
content/docs/nodes/system-requirements.mdxIndexed pages from build.avax.network and core repos.
content/docs/primary-network/avalanche-consensus.mdxIndexed pages from build.avax.network and core repos.
content/docs/primary-network/avax-token.mdxIndexed pages from build.avax.network and core repos.
content/docs/primary-network/continuous-execution.mdxIndexed pages from build.avax.network and core repos.
content/docs/primary-network/coreth-architecture.mdxIndexed pages from build.avax.network and core repos.
content/docs/primary-network/exchange-integration.mdxIndexed pages from build.avax.network and core repos.
content/docs/primary-network/firewood.mdxIndexed pages from build.avax.network and core repos.
content/docs/primary-network/helicon-upgrade.mdxIndexed pages from build.avax.network and core repos.
content/docs/primary-network/index.mdxIndexed pages from build.avax.network and core repos.
content/docs/primary-network/platformvm-architecture.mdxIndexed pages from build.avax.network and core repos.
content/docs/primary-network/validate/how-to-stake.mdxIndexed pages from build.avax.network and core repos.
content/docs/primary-network/validate/node-validator.mdxIndexed pages from build.avax.network and core repos.
content/docs/primary-network/validate/rewards-formula.mdxIndexed pages from build.avax.network and core repos.
content/docs/primary-network/validate/staking-for-finance-professionals.mdxIndexed pages from build.avax.network and core repos.
content/docs/primary-network/validate/validate-vs-delegate.mdxIndexed pages from build.avax.network and core repos.
content/docs/primary-network/validate/what-is-staking.mdxIndexed pages from build.avax.network and core repos.
content/docs/primary-network/verify-contract/explorer.mdxIndexed pages from build.avax.network and core repos.
content/docs/primary-network/verify-contract/hardhat.mdxIndexed pages from build.avax.network and core repos.
content/docs/primary-network/verify-contract/snowtrace.mdxIndexed pages from build.avax.network and core repos.
content/docs/primary-network/virtual-machines.mdxIndexed pages from build.avax.network and core repos.
content/docs/rpcs/c-chain/api.mdxIndexed pages from build.avax.network and core repos.
content/docs/rpcs/c-chain/index.mdxIndexed pages from build.avax.network and core repos.
content/docs/rpcs/c-chain/txn-format.mdxIndexed pages from build.avax.network and core repos.
content/docs/rpcs/index.mdxIndexed pages from build.avax.network and core repos.
content/docs/rpcs/other/guides/banff-changes.mdxIndexed pages from build.avax.network and core repos.
content/docs/rpcs/other/guides/blockchain-flow.mdxIndexed pages from build.avax.network and core repos.
content/docs/rpcs/other/guides/issuing-api-calls.mdxIndexed pages from build.avax.network and core repos.
content/docs/rpcs/other/guides/txn-fees.mdxIndexed pages from build.avax.network and core repos.
content/docs/rpcs/other/guides/x-chain-migration.mdxIndexed pages from build.avax.network and core repos.
content/docs/rpcs/other/index.mdxIndexed pages from build.avax.network and core repos.
content/docs/rpcs/other/standards/avalanche-network-protocol.mdxIndexed pages from build.avax.network and core repos.
content/docs/rpcs/other/standards/cryptographic-primitives.mdxIndexed pages from build.avax.network and core repos.
content/docs/rpcs/other/standards/serialization-primitives.mdxIndexed pages from build.avax.network and core repos.
content/docs/rpcs/p-chain/index.mdxIndexed pages from build.avax.network and core repos.
content/docs/rpcs/p-chain/txn-format.mdxIndexed pages from build.avax.network and core repos.
content/docs/rpcs/subnet-evm/config.mdxIndexed pages from build.avax.network and core repos.
content/docs/rpcs/x-chain/api.mdxIndexed pages from build.avax.network and core repos.
content/docs/rpcs/x-chain/index.mdxIndexed pages from build.avax.network and core repos.
content/docs/rpcs/x-chain/rpc.mdxIndexed pages from build.avax.network and core repos.
content/docs/rpcs/x-chain/txn-format.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/ai-llm/index.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/ai-llm/llms-txt.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/ai-llm/mcp-server.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/ai-llm/security.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-cli/cli-commands.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-cli/create-avalanche-l1.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-cli/create-avalanche-nodes/deploy-custom-vm.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-cli/create-avalanche-nodes/execute-ssh-commands.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-cli/create-avalanche-nodes/run-loadtest.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-cli/create-avalanche-nodes/run-validators-aws.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-cli/create-avalanche-nodes/run-validators-gcp.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-cli/create-avalanche-nodes/setup-devnet.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-cli/create-avalanche-nodes/stop-node.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-cli/create-avalanche-nodes/validate-primary-network.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-cli/create-deploy-avalanche-l1s/deploy-locally.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-cli/create-deploy-avalanche-l1s/deploy-on-fuji-testnet.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-cli/create-deploy-avalanche-l1s/deploy-on-mainnet.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-cli/create-deploy-avalanche-l1s/deploy-on-production-infra.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-cli/create-deploy-avalanche-l1s/deploy-with-custom-vm.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-cli/create-deploy-avalanche-l1s/deploy-with-multisig-auth.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-cli/cross-chain/teleporter-devnet.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-cli/cross-chain/teleporter-local-network.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-cli/cross-chain/teleporter-token-bridge.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-cli/get-avalanche-cli.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-cli/guides/import-avalanche-l1.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-cli/guides/run-with-docker.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-cli/index.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-cli/maintain/add-validator-l1.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-cli/maintain/delete-avalanche-l1.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-cli/maintain/remove-validator-l1.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-cli/maintain/troubleshooting.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-cli/maintain/view-avalanche-l1s.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-cli/transactions/ledger-p-chain-transfer.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-cli/transactions/native-send.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-cli/upgrade/avalanche-l1-precompile-config.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-cli/upgrade/avalanche-l1-virtual-machine.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-deploy/add-ons.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-deploy/deploy-l1-kubernetes.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-deploy/deploy-l1.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-deploy/deploy-primary-network-kubernetes.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-deploy/deploy-primary-network.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-deploy/index.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-deploy/operations.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-deploy/troubleshooting.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-postman/data-visualization.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-postman/index.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-postman/making-api-calls.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-postman/variables.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/chainkit/authentication.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/chainkit/custom-http.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/chainkit/errors.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/chainkit/getting-started.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/chainkit/global-parameters.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/chainkit/pagination.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/chainkit/retries.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/client/accounts/index.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/client/accounts/json-rpc/index.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/client/accounts/local/addresses.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/client/accounts/local/clients.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/client/accounts/local/hd-key.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/client/accounts/local/index.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/client/accounts/local/mnemonic.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/client/accounts/local/private-key.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/client/accounts/local/utilities.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/client/clients/api-clients.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/client/clients/avalanche-client.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/client/clients/c-chain-client.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/client/clients/index.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/client/clients/p-chain-client.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/client/clients/wallet-client.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/client/clients/x-chain-client.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/client/clients-transports.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/client/getting-started.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/client/methods/public-methods/api.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/client/methods/public-methods/c-chain.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/client/methods/public-methods/p-chain.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/client/methods/public-methods/public.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/client/methods/public-methods/x-chain.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/client/methods/wallet-methods/c-chain-wallet.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/client/methods/wallet-methods/p-chain-wallet.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/client/methods/wallet-methods/wallet.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/client/methods/wallet-methods/x-chain-wallet.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/client/utils/index.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/index.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/interchain/chains/index.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/interchain/getting-started.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/interchain/icm/index.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/interchain/icm/methods.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/interchain/ictt/deployment.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/interchain/ictt/index.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/interchain/ictt/transfers.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/interchain/index.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/interchain/warp/building.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/interchain/warp/index.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/avalanche-sdk/interchain/warp/parsing.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/interchain-kit/example-contracts.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/interchain-kit/foundry-harness.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/interchain-kit/icm-messaging.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/interchain-kit/index.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/interchain-kit/installation.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/interchain-kit/local-network.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/interchain-kit/tmpnetjs-sdk.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/interchain-kit/token-transfer.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/interchain-kit/troubleshooting.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/interchain-kit/validator-management.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/platform-cli/chains.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/platform-cli/command-reference.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/platform-cli/index.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/platform-cli/installation.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/platform-cli/key-management.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/platform-cli/l1-validators.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/platform-cli/staking.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/platform-cli/subnets.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/platform-cli/transfers.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/tmpnet/guides/cross-chain-messaging.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/tmpnet/guides/getting-started.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/tmpnet/guides/l1-conversion.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/tmpnet/guides/monitoring.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/tmpnet/guides/runtimes.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/tmpnet/guides/staking-and-delegation.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/tmpnet/guides/subnet-testing.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/tmpnet/guides/testing-custom-vms.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/tmpnet/guides/transaction-utilities.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/tmpnet/guides/validator-management-native-staking.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/tmpnet/guides/warp-messages.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/tmpnet/index.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/tmpnet/installation.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/tmpnet/quick-start.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/tmpnet/reference/cli-commands.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/tmpnet/reference/configuration.mdxIndexed pages from build.avax.network and core repos.
content/docs/tooling/tmpnet/troubleshooting-runtime.mdxIndexed pages from build.avax.network and core repos.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Eelvanpsd/Avalanche-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server