Skip to main content
Glama
ORDNET

ORDnet MCP Server

Official
by ORDNET

Initialize ORDnet Wallet

ordnet_wallet_init
Idempotent

Initialize a Bitcoin SV wallet from a WIF private key to enable inscription transactions and manage balances. Returns address, public key, and satoshi balance.

Instructions

Initialize wallet from WIF private key for blockchain operations.

This is the first step before creating inscriptions. The wallet will be used for:

  • Creating and signing inscription transactions

  • Paying service fees (396 sats across 11 outputs / 10 addresses)

  • Receiving change from transactions

Security: WIF is held in memory only, not persisted. Use ordnet_wallet_init_env for production.

Args:

  • wif (string): WIF private key (starts with 5, K, or L, 51-52 chars)

Returns: { address: string, publicKey: string, balanceSatoshis: number }

Example: ordnet_wallet_init({ wif: "L1a2b3c4d5..." }) → Wallet initialized at 1ABC...

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
wifYesWIF (Wallet Import Format) private key. Starts with 5, K, or L.
Behavior4/5

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

Annotations already declare idempotentHint=true and non-destructive, and the description adds valuable security context: 'WIF is held in memory only, not persisted.' It also discloses fee details and that this is non-production (via the init_env reference). No contradiction with annotations.

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

Conciseness4/5

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

Well-structured with sections (intro, use cases, security, args, returns, example). It is somewhat verbose with fee details, but each section serves a purpose and the key information is front-loaded. Not wasteful overall.

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?

The tool is relatively simple with one parameter and no output schema. The description covers return value, example, security, and usage context. It lacks error-handling details, but that is not essential given the schema and annotations. Complete enough for a single-purpose init tool.

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 100% with wif described in the schema (pattern, minLength, maxLength). The description repeats the format and adds an example, but does not significantly augment the schema's meaning. Baseline 3 is appropriate.

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 clearly states 'Initialize wallet from WIF private key for blockchain operations', using a specific verb and resource. It differentiates from siblings by mentioning 'Use ordnet_wallet_init_env for production' and positioning itself as the initial step before inscription creation.

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

Usage Guidelines5/5

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

Explicitly says 'This is the first step before creating inscriptions' and lists concrete use cases (creating/signing, paying fees, receiving change). It also provides an explicit alternative: 'Use ordnet_wallet_init_env for production', giving clear when-to-use guidance.

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

Install Server

Other Tools

Latest Blog Posts

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/ORDNET/ORDnet-MCP-Server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server