Skip to main content
Glama
obcraft
by obcraft

apiosk_wallet_select

Idempotent

Choose the active local wallet for API execution and publishing. Set the wallet_id to apply to all subsequent calls and transactions.

Instructions

Select the active local wallet used by apiosk_execute, dynamic API tools, and publish tools.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
wallet_idYes
include_qr_data_urlNoInclude a QR data URL alongside the terminal QR when supported by the client.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observedv1.8.0

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare this as an idempotent, non-destructive mutation. The description adds behavioral context by specifying that the selection sets the active local wallet and affects downstream operations. It does not describe persistence/scope, but annotations cover the key safety profile.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single sentence with no filler; the action and scope are front-loaded and every word adds meaning. It is appropriately sized for a simple selection tool.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given a simple two-parameter tool with an output schema, the description covers what the tool does, what it affects, and which tools depend on it. The main missing detail is explicit wallet_id semantics, but the low complexity and inferability from the name make this acceptable.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is only 50%: wallet_id has no schema description. The description does not explicitly explain that wallet_id identifies the wallet to activate or where to obtain it, so it only partially compensates. include_qr_data_url carries its own schema description, so the main gap is the required parameter.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('select'), identifies the resource ('active local wallet'), and names the consumers (apiosk_execute, dynamic API tools, publish tools). This distinguishes it from sibling wallet management tools such as list/create/update/delete and makes the operation unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It gives clear context by stating that this wallet is the one used by execute, dynamic API tools, and publish tools, so agents know to call it before those workflows. It does not explicitly list alternative tools or when-not-to-use scenarios, but the context is sufficient for selection.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.