Skip to main content
Glama

Server Details

Deploy ERC-20 tokens on Ethereum, Base, BNB, Polygon via MCP. One call = deployed contract.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Unhealthy
Last Tested
Transport
Streamable HTTP
URL

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 6 tool updates
    • Changedava_confirm_deployment3 fields changed
      • addedInput schema / properties / apiKey / description
        Added value: +"Your Ava Genesis API key (ava_live_...) used when the intent was created"
      • addedInput schema / properties / intentId / description
        Added value: +"The intentId returned by ava_create_token_intent"
      • changedInput schema / properties / txHash / description
        Previous value: -"0x-prefixed 32-byte transaction hash"New value: +"0x-prefixed 32-byte transaction hash from your signed and broadcast transaction"
    • Changedava_create_api_key2 fields changed
      • changedInput schema / properties / monthlyLimit / description
        Previous value: -"Max deployments/month (default: 100)"New value: +"Maximum number of mainnet deployments allowed per calendar month (default: 100). Does not limit Sepolia testnet deployments."
      • changedInput schema / properties / name / description
        Previous value: -"Label for the key"New value: +"Human-readable label for this key, e.g. 'Treasury Agent v1'. Helps identify the key in your dashboard."
    • Changedava_create_token_intent11 fields changed
      • addedInput schema / properties / apiKey / description
        Added value: +"Your Ava Genesis API key (ava_live_...)"
      • addedInput schema / properties / callbackUrl / description
        Added value: +"Optional HTTPS webhook URL to receive status updates (deploying, deployed, failed). Signed with HMAC-SHA256."
      • changedInput schema / properties / chain / description
        Previous value: -"Target chain. Base and BNB have lowest gas fees."New value: +"Target chain. Base and BNB Chain have the lowest gas fees and are recommended for most agent deployments."
      • addedInput schema / properties / decimals / description
        Added value: +"Token decimal places (default: 18)"
      • addedInput schema / properties / features / description
        Added value: +"Optional feature flags. Premium features (mintable, pausable, blacklist, transferTax, antiWhale) trigger $50 tier. Burnable alone is $20 tier."
      • addedInput schema / properties / idempotencyKey / description
        Added value: +"Optional unique string to prevent duplicate deployments on retry. Same key returns the original intent instead of creating a new one."
      • addedInput schema / properties / name / description
        Added value: +"Token name, e.g. 'Agent Treasury Token'"
      • addedInput schema / properties / supply / description
        Added value: +"Initial token supply as a number string, e.g. '1000000'. Avoid scientific notation."
      • addedInput schema / properties / symbol / description
        Added value: +"Token ticker symbol, e.g. 'ATT' (max 16 chars, uppercase recommended)"
      • addedInput schema / properties / template / description
        Added value: +"Optional preset that pre-fills feature flags. Use ava_list_templates to see each preset's config."
      • addedInput schema / properties / template / enum
        Added value: +[
        +  "utility",
        +  "governance",
        +  "reward",
        +  "treasury",
        +  "community",
        +  "meme"
        +]
    • Changedava_get_deployment_status2 fields changed
      • addedInput schema / properties / apiKey / description
        Added value: +"Your Ava Genesis API key (ava_live_...) used when the deployment was created"
      • addedInput schema / properties / intentId / description
        Added value: +"The intentId returned by ava_deploy_token, ava_create_token_intent, or ava_confirm_deployment"
    • Changedava_list_my_tokens4 fields changed
      • addedInput schema / properties / apiKey / description
        Added value: +"Your Ava Genesis API key (ava_live_...)"
      • addedInput schema / properties / chain / description
        Added value: +"Filter by chain. Omit to return tokens across all chains."
      • changedInput schema / properties / limit / description
        Previous value: -"Default: 50"New value: +"Number of results to return (default: 50, max: 200)"
      • addedInput schema / properties / status / description
        Added value: +"Filter by deployment status. Omit to return all statuses."
    • Changedava_simulate_token10 fields changed
      • addedInput schema / properties / apiKey / description
        Added value: +"Your Ava Genesis API key (ava_live_...)"
      • addedInput schema / properties / chain / description
        Added value: +"Target chain for fee estimate. Base and BNB Chain have lowest gas fees."
      • changedInput schema / properties / decimals / description
        Previous value: -"Default: 18"New value: +"Token decimal places (default: 18). Use 6 for stablecoin-like tokens, 18 for standard ERC-20."
      • addedInput schema / properties / features / description
        Added value: +"Optional feature overrides. Any premium feature (mintable, pausable, blacklist, transferTax, antiWhale) triggers the $50 tier. Burnable alone is $20 Basic tier."
      • addedInput schema / properties / features / properties
        Added value: +{
        +  "antiWhale": {
        +    "description": "Enable per-wallet supply cap ($50 tier)",
        +    "type": "boolean"
        +  },
        +  "blacklist": {
        +    "description": "Owner can block specific addresses ($50 tier)",
        +    "type": "boolean"
        +  },
        +  "burnable": {
        +    "description": "Token holders can burn their own tokens ($20 tier)",
        +    "type": "boolean"
        +  },
        +  "maxWalletPercent": {
        +    "description": "Max % of supply any single wallet can hold (1-100). Requires antiWhale: true.",
        +    "type": "number"
        +  },
        +  "mintable": {
        +    "description": "Owner can mint additional tokens after deploy ($50 tier)",
        +    "type": "boolean"
        +  },
        +  "pausable": {
        +    "description": "Owner can pause all transfers ($50 tier)",
        +    "type": "boolean"
        +  },
        +  "transferTax": {
        +    "description": "Tax in basis points on every transfer (100=1%, max 2500=25%). Triggers $50 tier.",
        +    "type": "number"
        +  }
        +}
      • addedInput schema / properties / name / description
        Added value: +"Token name, e.g. 'My Protocol Token'"
      • addedInput schema / properties / supply / description
        Added value: +"Initial token supply as a number string, e.g. '1000000'. Avoid scientific notation."
      • addedInput schema / properties / symbol / description
        Added value: +"Token ticker symbol, e.g. 'MPT' (max 16 chars, uppercase recommended)"
      • addedInput schema / properties / template / description
        Added value: +"Optional preset that pre-fills feature flags. Use ava_list_templates to see each preset's config."
      • addedInput schema / properties / template / enum
        Added value: +[
        +  "utility",
        +  "governance",
        +  "reward",
        +  "treasury",
        +  "community",
        +  "meme"
        +]
  2. 9 tool updates
    • First observedava_confirm_deployment
    • First observedava_create_api_key
    • First observedava_create_token_intent
    • First observedava_deploy_token
    • First observedava_get_deployment_status
    • First observedava_get_gas_prices
    • First observedava_list_my_tokens
    • First observedava_list_templates
    • First observedava_simulate_token

Frequently Asked Questions

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Connectors

Related MCP Servers

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.6/5.0
Disambiguation5/5

Each tool has a clear, distinct purpose: API key creation, template listing, simulation, gas pricing, two deployment paths (testnet vs mainnet), deployment confirmation, status polling, and token listing. Descriptions explicitly distinguish the deployment flows, preventing confusion.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern with the 'ava_' prefix (e.g., ava_confirm_deployment, ava_list_templates). The naming is predictable and self-documenting, making it easy to infer each tool's function.

Tool Count5/5

With 9 tools, the server is well-scoped for a token deployment service. Each tool addresses a specific step in the workflow (key creation, template selection, simulation, gas check, deployment, confirmation, status polling, listing) without unnecessary overhead.

Completeness5/5

The tool set covers the full lifecycle of token deployment: bootstrap (API key), planning (templates, simulation, gas prices), execution (deploy on testnet or mainnet, confirm, poll status), and auditing (list tokens). No obvious gaps for the stated purpose.

Resources