walletwallet-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@walletwallet-mcpCreate a new digital pass for my coffee shop loyalty card."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
walletwallet-mcp
A remote MCP server that exposes the WalletWallet pass
API as MCP tools: create_pass, update_pass, get_google_wallet_link, check_usage.
Transport: streamable-http, mounted at /mcp on whatever host/port you deploy to.
1. Get an API key
Sign up at https://www.walletwallet.dev — free tier is 1,000 passes/month, no card
required. Copy the ww_live_... key.
Related MCP server: Bitcoin wallet MCP server
2. Generate an MCP auth token
This is separate from the WalletWallet key — it's what gates access to your MCP server so random internet traffic can't call your tools and burn your WalletWallet quota. Minimal static bearer token, not OAuth.
openssl rand -hex 32Keep this value; you'll set it as MCP_AUTH_TOKEN and also give it to your
MCP client.
3. Run locally first
pip install -r requirements.txt
export WALLETWALLET_API_KEY=ww_live_your_key
export MCP_AUTH_TOKEN=the_hex_string_from_step_2
python server.pyServer listens on 0.0.0.0:8000, MCP endpoint at http://localhost:8000/mcp.
Requests without Authorization: Bearer <MCP_AUTH_TOKEN> get a 401.
4. Deploy remotely
The Dockerfile is host-agnostic (reads PORT env var), so any of these work:
Fly.io — fits your existing GitHub Actions + encrypted-secret pattern:
fly launch --no-deploy # generates fly.toml, don't overwrite Dockerfile fly secrets set WALLETWALLET_API_KEY=ww_live_your_key MCP_AUTH_TOKEN=the_hex_string fly deployRender / Railway — connect the repo, set
WALLETWALLET_API_KEYandMCP_AUTH_TOKENas environment secrets in the dashboard, it'll build from the Dockerfile automatically.Cloud Run —
gcloud run deploy --source . --set-secrets WALLETWALLET_API_KEY=...,MCP_AUTH_TOKEN=...
Whichever you pick, both secrets go in as platform secrets, never committed, never passed through chat. Same pattern you're already using for GITHUB_TOKEN-triggered scripts.
5. Point an MCP client at it
For Claude (claude.ai / Claude Code), add a remote MCP connector pointing at:
https://<your-deployed-host>/mcpwith an Authorization: Bearer <MCP_AUTH_TOKEN> header configured on the
connector (exact UI/config field depends on the client — Claude's remote MCP
connector setup supports custom headers).
This bearer token is a coarse gate: anyone with the token can call any tool. It's appropriate for "just me, one client" use. If this server will ever be shared with other people or other services, that's a different, heavier problem — see the note below.
Notes
create_passreturnsserialNumber— save it, you need it forupdate_pass.Updates are pushed only when a field's value actually changes AND that field has a
changeMessageset; identical bodies are a silent no-op (per WalletWallet docs).barcodeFormatcurrently supports QR/PDF417/Aztec/Code128 per the documented format; iOS 27 is expected to add EAN-13/Code 39/Codabar/ITF — not yet reflected here.On auth scope: this server uses a single shared static bearer token — fine for "one person, one client." If you need per-user identity, login flows, or third parties calling this server, that's OAuth 2.1 (which the
mcpPython SDK supports viaFastMCP(auth=...)/TokenVerifier), not this. Don't retrofit OAuth onto this file for a multi-user case — treat that as a separate build with its own auth server, token issuance, and user store.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/dhk/walletwallet-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server