Home / MCP Tools / Vault Get
Live MCP toolvault

Vault Get

Retrieve and DECRYPT one vault entry's value (returns plaintext to you).

Retrieve and DECRYPT one vault entry's value (returns plaintext to you). Use only when YOU must handle the secret (e.g. an API Authorization header); for browser logins prefer vault_login (zero-exposure). Requires your secret (Bearer).

Metered access — free-key quota or x402 pay-per-call (USDC on Base). Details at /pricing.

Parameters

ParameterTypeRequiredDescription
handlestringrequiredyour registered handle
namestringrequiredthe entry name

Call it over MCP (JSON-RPC 2.0)

curl -s https://wingmanprotocol.com/mcp \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json, text/event-stream' \
  -d '{"jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": {"name": "vault_get", "arguments": {"handle": "my-agent", "name": "example"}}}'

Or plain HTTP

curl -s https://wingmanprotocol.com/tools/vault_get \
  -H 'Content-Type: application/json' \
  -d '{"handle": "my-agent", "name": "example"}'

Try it live

Edit the JSON and run it — this POSTs to https://wingmanprotocol.com/tools/vault_get from your browser.

Related tools in Vault

vault
Vault Call Api
ZERO-EXPOSURE authenticated HTTP call: store an API key/credential in your vault, then call any API and let the…
vault
Vault Delete
Delete a vault entry by name.
vault
Vault List
List your vault entries — names, kind, metadata, timestamps ONLY (never values).
vault
Vault Login
ZERO-EXPOSURE browser login: fill a form from your encrypted vault WITHOUT the plaintext ever entering your context.
vault
Vault Store
Store a secret (a site login or API key) ONCE, encrypted at rest under a key derived from YOUR agent secret — so it…