Skip to main content
Glama

Adamik MCP Server

Official

broadcastTransaction

Send signed transactions to blockchain networks using Adamik MCP Server. Integrates with key management systems for secure transaction broadcasting across 60+ chains.

Instructions

Broadcast a signed transaction. You will probably need another MCP server dedicated in key management and signing before using this.

Input Schema

NameRequiredDescriptionDefault
bodyYes
chainIdYes

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "body": { "additionalProperties": false, "properties": { "transaction": { "additionalProperties": false, "properties": { "data": { "allOf": [ { "properties": { "fees": { "type": "string" }, "gas": { "type": "string" }, "memo": { "type": "string" }, "nonce": { "type": "string" }, "params": { "additionalProperties": {}, "type": "object" } }, "required": [ "fees" ], "type": "object" }, { "anyOf": [ { "additionalProperties": false, "properties": { "contractType": { "const": "argentx", "default": "argentx", "type": "string" }, "mode": { "const": "deployAccount", "type": "string" }, "senderPubKey": { "type": "string" } }, "required": [ "mode", "senderPubKey" ], "type": "object" }, { "additionalProperties": false, "properties": { "amount": { "type": "string" }, "mode": { "const": "transfer", "type": "string" }, "recipientAddress": { "type": "string" }, "senderAddress": { "type": "string" }, "senderPubKey": { "type": "string" }, "useMaxAmount": { "default": false, "type": "boolean" } }, "required": [ "mode", "senderAddress", "recipientAddress" ], "type": "object" }, { "additionalProperties": false, "properties": { "amount": { "type": "string" }, "mode": { "const": "transferToken", "type": "string" }, "recipientAddress": { "type": "string" }, "senderAddress": { "type": "string" }, "senderPubKey": { "type": "string" }, "tokenId": { "type": "string" }, "useMaxAmount": { "default": false, "type": "boolean" } }, "required": [ "mode", "tokenId", "senderAddress", "recipientAddress" ], "type": "object" }, { "additionalProperties": false, "properties": { "amount": { "type": "string" }, "mode": { "const": "stake", "type": "string" }, "senderAddress": { "type": "string" }, "senderPubKey": { "type": "string" }, "sourceValidatorAddress": { "type": "string" }, "targetValidatorAddress": { "type": "string" }, "useMaxAmount": { "default": false, "type": "boolean" } }, "required": [ "mode", "senderAddress", "targetValidatorAddress" ], "type": "object" }, { "additionalProperties": false, "properties": { "amount": { "type": "string" }, "mode": { "const": "unstake", "type": "string" }, "senderAddress": { "type": "string" }, "senderPubKey": { "type": "string" }, "stakeId": { "type": "string" }, "useMaxAmount": { "default": false, "type": "boolean" }, "validatorAddress": { "type": "string" } }, "required": [ "mode", "senderAddress", "validatorAddress" ], "type": "object" }, { "additionalProperties": false, "properties": { "compound": { "default": false, "type": "boolean" }, "mode": { "const": "claimRewards", "type": "string" }, "senderAddress": { "type": "string" }, "senderPubKey": { "type": "string" }, "stakeId": { "type": "string" }, "validatorAddress": { "type": "string" } }, "required": [ "mode", "senderAddress", "validatorAddress" ], "type": "object" }, { "additionalProperties": false, "properties": { "amount": { "type": "string" }, "mode": { "const": "withdraw", "type": "string" }, "recipientAddress": { "type": "string" }, "senderAddress": { "type": "string" }, "senderPubKey": { "type": "string" }, "stakeId": { "type": "string" }, "validatorAddress": { "type": "string" } }, "required": [ "mode", "senderAddress", "senderPubKey", "recipientAddress" ], "type": "object" }, { "additionalProperties": false, "properties": { "amount": { "type": "string" }, "mode": { "const": "registerStake", "type": "string" }, "proofOfPossession": { "type": "string" }, "senderAddress": { "type": "string" }, "senderForeignPubKey": { "type": "string" }, "senderPubKey": { "type": "string" }, "signedSlashingTransaction": { "type": "string" }, "signedStakingTransaction": { "type": "string" }, "signedUnbondingSlashingTransaction": { "type": "string" }, "unsignedUnbondingTransaction": { "type": "string" }, "validatorPubKey": { "type": "string" } }, "required": [ "mode", "senderAddress", "senderPubKey", "senderForeignPubKey", "proofOfPossession", "amount", "validatorPubKey", "unsignedUnbondingTransaction", "signedStakingTransaction", "signedSlashingTransaction", "signedUnbondingSlashingTransaction" ], "type": "object" }, { "additionalProperties": false, "properties": { "from": { "additionalProperties": false, "properties": { "address": { "type": "string" }, "amount": { "type": "string" }, "tokenId": { "type": "string" } }, "required": [ "amount", "tokenId", "address" ], "type": "object" }, "includeFees": { "type": "boolean" }, "mode": { "const": "convertAsset", "type": "string" }, "slippage": { "maximum": 1, "minimum": 0, "type": "number" }, "to": { "additionalProperties": false, "properties": { "address": { "type": "string" }, "amount": { "type": "string" }, "chainId": { "$ref": "#/properties/chainId" }, "tokenId": { "type": "string" } }, "required": [ "tokenId", "address" ], "type": "object" } }, "required": [ "mode", "from", "to", "includeFees" ], "type": "object" } ] } ] }, "encoded": { "items": { "additionalProperties": false, "properties": { "hash": { "additionalProperties": false, "properties": { "format": { "enum": [ "sha256", "keccak256", "sha512_256", "pedersen" ], "type": "string" }, "value": { "type": "string" } }, "required": [ "format", "value" ], "type": "object" }, "raw": { "additionalProperties": false, "properties": { "format": { "enum": [ "RLP", "WALLET_CONNECT", "SIGNDOC_DIRECT", "SIGNDOC_DIRECT_JSON", "SIGNDOC_AMINO", "SIGNDOC_AMINO_JSON", "BOC", "RAW_TRANSACTION", "MSGPACK", "PSBT", "BCS" ], "type": "string" }, "value": { "type": "string" } }, "required": [ "format", "value" ], "type": "object" } }, "type": "object" }, "type": "array" }, "signature": { "type": "string" } }, "required": [ "data", "encoded", "signature" ], "type": "object" } }, "required": [ "transaction" ], "type": "object" }, "chainId": { "type": "string" } }, "required": [ "chainId", "body" ], "type": "object" }

Other Tools from Adamik 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/AdamikHQ/adamik-mcp-server'

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