Skip to main content
Glama

LayerZero OFT MCP Server

by thomasfevre

deploy-and-configure-oft-multichain

Deploy OFT contracts across multiple chains, establish peer connections, and configure enforced options to enable cross-chain token functionality using LayerZero protocols.

Instructions

Deploys an OFT contract to multiple chains, sets up peer connections, and configures enforced options.

Input Schema

NameRequiredDescriptionDefault
decimalsNoNumber of decimals for the token (default: 18)
initialTotalSupplyYesTotal supply of the token in human-readable format (e.g., '1000000')
ownerNoOptional owner address. Defaults to OWNER_ADDRESS from .env if not provided.
targetChainsYesList of chain names to deploy and configure the OFT on (e.g., ['ArbitrumSepolia', 'baseSepolia'])
tokenNameYesName of the token (e.g., MyToken)
tokenSymbolYesSymbol of the token (e.g., MYT)

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "decimals": { "default": 18, "description": "Number of decimals for the token (default: 18)", "maximum": 18, "minimum": 0, "type": "integer" }, "initialTotalSupply": { "description": "Total supply of the token in human-readable format (e.g., '1000000')", "type": "string" }, "owner": { "description": "Optional owner address. Defaults to OWNER_ADDRESS from .env if not provided.", "type": "string" }, "targetChains": { "description": "List of chain names to deploy and configure the OFT on (e.g., ['ArbitrumSepolia', 'baseSepolia'])", "items": { "enum": [ "ArbitrumSepolia", "baseSepolia" ], "type": "string" }, "minItems": 1, "type": "array" }, "tokenName": { "description": "Name of the token (e.g., MyToken)", "type": "string" }, "tokenSymbol": { "description": "Symbol of the token (e.g., MYT)", "type": "string" } }, "required": [ "tokenName", "tokenSymbol", "initialTotalSupply", "targetChains" ], "type": "object" }
Install Server

Other Tools from LayerZero OFT MCP Server

Related Tools

    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/thomasfevre/layerzero_mcp'

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