# Check Link Wallet

> Reads the connected Link account, the cards and bank accounts saved in its wallet, its saved shipping addresses, and the status of existing spend requests. Use when the user asks which Link account is connected, what payment methods or addresses Link has saved, or whether a Link purchase has been approved yet.

- Skill: `stripe/check-link-wallet` (Agent Skill)
- Install (CLI): `npx skillmds add stripe/check-link-wallet`
- Raw SKILL.md: https://api.skillmd.com/api/skills/stripe/check-link-wallet/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: stripe (https://skillmd.com/u/stripe)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/stripe/check-link-wallet

---


# Check a Link wallet

Read-only inspection of the connected Link account through the Link MCP
server. Nothing here moves money or changes a spend request.

To actually buy something, use the `complete-link-purchase` skill instead.

## Tools

| Question | Tool |
|---|---|
| Which account is connected? | `get_userinfo` |
| What cards and bank accounts are saved? | `list_payment_methods` |
| What shipping addresses are saved? | `list_shipping_addresses` |
| What purchases are pending or approved? | `list_spend_requests` |
| What is the status of one purchase? | `get_spend_request` |

Call only the tool that answers the question. Do not sweep all five to build a
picture the user did not ask for.

## Spend request status

`list_spend_requests` returns only active requests by default — those in
`created`, `pending_approval`, or `approved`. Pass `includeHistory` when the
user is asking about something that already finished or expired.

The statuses mean:

- **`created`** — exists, but the user has not been asked to approve it yet.
- **`pending_approval`** — waiting on the user. They approve in the Link app.
- **`approved`** — ready to spend against.
- Expired and terminal states are only visible with `includeHistory`, and
  cannot be spent against. A user who still wants the purchase needs a fresh
  one, raised with `request_virtual_card` — but only if they ask for it. Do not
  offer to re-run a purchase off the back of a status question.

`get_spend_request` returns the status of a single request by id. **Do not pass
the `include` parameter here.** `include: ["card"]` and
`include: ["shared_payment_token"]` return live payment credentials, and they
belong only in the moment of paying, which is the other skill's job.

## What to expose

- Summarize. Do not dump raw JSON or object ids unless the user asks.
- Payment methods: brand, type, and last four only. Never a full number.
- Shipping addresses: city and postcode by default. Give the full address only
  if the user asks for it.
- Never surface tokens, credentials, or internal identifiers as an aside.

## When the account is not connected

An authorization error from any of these tools means the user has not connected
Link in Cursor, or the connection has lapsed. Say so plainly and let them
reconnect. Do not retry in a loop, and do not try another tool hoping for a
different answer.

