Skip to main content
Glama

Server Details

Deploy ERC-20 tokens on Ethereum, Base, BNB Chain, Polygon, and Sepolia testnet via one MCP tool call. Returns a deployed contract address. $10 flat fee per mainnet deployment — same as human users. Free on Sepolia testnet. Requires an API key from https://avagenesis.com/api/agents/keys

Ownership verified

Glama couldn't complete the latest health check. If this server requires authentication, missing or expired test credentials may be the cause. A test profile lets Glama authenticate for health checks and discover tools; it is separate from your personal connections.

If you are the author, claim ownership, then add or update a test profile under Admin → Test Profile.

Status
Unhealthy
Uptime
0.0% over 37 days
Last Tested
Transport
Streamable HTTP
URL

TDQS

A4.5/5.0

Scored across 9 tools

Disambiguation5/5

Every tool has a clearly distinct purpose. The two deployment tools (ava_create_token_intent and ava_deploy_token) are well-differentiated by network and wallet requirements, and related tools like ava_confirm_deployment and ava_get_deployment_status serve different steps in the workflow.

Naming Consistency5/5

All tools follow the consistent pattern 'ava_verb_noun' with descriptive verbs (create, deploy, confirm, get, list, simulate) and nouns, all in snake_case. No mixing of conventions.

Tool Count5/5

With 9 tools covering the full deployment lifecycle (API key creation, simulation, template browsing, gas prices, two deployment methods, status polling, confirmation, and token listing), the count is well-scoped and each tool earns its place.

Completeness5/5

The tool set covers the complete workflow from bootstrap to deployment and verification. Simulation, gas estimation, testnet/mainnet deployment, status polling, and token listing are all included, with no obvious gaps for the server's stated purpose of token deployment.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  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

Related MCP Servers

  • A
    license
    A
    quality
    C
    maintenance
    Enables brand visibility monitoring across major AI platforms like ChatGPT, Claude, Gemini, and Perplexity. It allows users to track visibility scores, analyze competitor data, and receive actionable insights to improve AI-generated brand recommendations.
    16
    7 npm
    1
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    Enables tracking competitor websites, changelogs, blog feeds, and pricing pages with meaningful diffs, classification, and Markdown digests via MCP tools for listing, adding, removing competitors, running checks, and retrieving digests or changes.
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    Browse IndustryLens's published competitive-intelligence reports and head-to-head competitor comparisons from any AI agent — real, source-backed data.
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources