IMBA Wallet Agentic MCP

에이전틱 지갑으로, USDT TRC-20, VISA/마스터카드, VISA 선불카드, eSIM 및 기프트 카드를 지원하여 20,000개 이상의 온라인 및 오프라인 서비스 비용을 결제할 수 있습니다.

문서

IMBA Agent MCP (Docker)

agent-mcp MCP server agent-mcp MCP server

Stdio images for the prepaid IMBA Agent API. They install the public npm packages only. This repository does not contain API keys, Ed25519 private keys, or registry seeds.

Default Dockerfile is the docs server so Glama and other scanners can build without secrets. Spend is a separate image.

FilenpmRegistry nameWhat it does
Dockerfile / Dockerfile.docs@imba_wallet/agent-mcp-docscom.imbawallet/agent-docsPolicy, HowTo, what agents buy. No money.
Dockerfile.spend@imba_wallet/agent-mcpcom.imbawallet/agentUSDT TRC-20 + Visa prepaid / eSIM / gift cards with your key. No withdraw.

Hosted remotes: docs · spend

Playbooks: what agents buy · HowTo · API docs

What agents buy

IMBA issues the payment instrument, not the booking:

  • Visa/MasterCard prepaid — airlines, hotels, SaaS, or a datacenter that bills a card
  • Travel eSIM — cheap mobile data
  • Gift cards — live catalog (~20,000 positions; Apple, Steam, Google Play — search, do not hard-code a SKU)

ChatGPT Actions must not call spend.

Install (stdio)

Docs (no secrets):

npx -y @imba_wallet/agent-mcp-docs@0.1.5
{
  "mcpServers": {
    "imba-agent-docs": {
      "command": "npx",
      "args": ["-y", "@imba_wallet/agent-mcp-docs@0.1.5"]
    }
  }
}

Spend (operator key):

{
  "mcpServers": {
    "imba-agent": {
      "command": "npx",
      "args": ["-y", "@imba_wallet/agent-mcp"],
      "env": {
        "IMBA_AGENT_CLIENT_ID": "YOUR_CLIENT_ID",
        "IMBA_AGENT_PRIVATE_KEY": "-----BEGIN PRIVATE KEY-----\\n...\\n-----END PRIVATE KEY-----"
      }
    }
  }
}

Claude Code marketplace (this repo):

/plugin marketplace add IMBAwallet/agent-mcp
/plugin install imba-agent@imba-agent

Agent skill: npx skills add IMBAwallet/agent-mcp --skill imba-agent

Docker

docker build -t imba-agent-docs .
docker run -i --rm imba-agent-docs

docker build -f Dockerfile.spend -t imba-agent-spend .
docker run -i --rm \
  -e IMBA_AGENT_CLIENT_ID=YOUR_CLIENT_ID \
  -e IMBA_AGENT_PRIVATE_KEY=YOUR_PKCS8_PEM_OR_BASE64URL \
  imba-agent-spend

Not a ChatGPT money plugin. Raising agent_tier does not unlock withdraw.

Glama listing

Repo: glama.ai/mcp/servers/IMBAwallet/agent-mcp

glama.json lists GitHub user clnt2021. After a push to main:

  1. Sign in to Glama with that GitHub account.
  2. Open the listing → Sync Server (mirror can lag).
  3. Claim ownership if Maintainers still shows 0 (org repos need glama.json + claim).
  4. Make Release against the root Dockerfile (docs). Do not release Dockerfile.spend in Glama — the sandbox has no operator key.

Quality grades (tool definitions / coherence) appear only after that Glama release, not after a GitHub tag.

Owner-match catalog copy

LobeHub (and similar) require the GitHub user to own the listing repo. Mirror packaging (no secrets) lives at clnt2021/imba_agent_mcp. When plugin.json, mcp.json, skills, Dockerfiles, or lhm.plugin.json change, update both repos. Wallet SSOT: docs/features/agent_mcp.md.