IMBA Agent MCP (Docker)
Stdio images for the prepaid IMBA Agent API. They install the public npmpackages 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 canbuild without secrets. Spend is a separate image.
| File | npm | Registry name | What it does |
|---|---|---|---|
Dockerfile / Dockerfile.docs |
@imba_wallet/agent-mcp-docs |
com.imbawallet/agent-docs |
Policy, HowTo, what agents buy. No money. |
Dockerfile.spend |
@imba_wallet/agent-mcp |
com.imbawallet/agent |
USDT TRC-20 + Visa prepaid / eSIM / gift cards with your key. No withdraw. |
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/[email protected]
{
"mcpServers": {
"imba-agent-docs": {
"command": "npx",
"args": ["-y", "@imba_wallet/[email protected]"]
}
}
}
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.json lists GitHub user clnt2021. After a push to main:
- Sign in to Glama with that GitHub account.
- Open the listing → Sync Server (mirror can lag).
- Claim ownership if Maintainers still shows 0 (org repos need
glama.json+ claim). - Make Release against the root
Dockerfile(docs). Do not releaseDockerfile.spendin 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.