Skip to main content
Glama

solknife_multisig_create_build

Build an unsigned create-multisig tx. createKey is a fresh random pubkey the agent generates; it must co-sign the tx (two signers: creator + createKey). Returns the derived multisig + vault addresses, base64 v0 tx, and lastValidBlockHeight.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
creatorYesA Solana address in base58, 32-44 chars.
membersYesThe multisig members. Omit permissions to grant all three.
timeLockNo
createKeyYesA Solana address in base58, 32-44 chars.
thresholdYesApprovals required to execute a proposal. Must not exceed the member count.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations, the description carries the full burden. It explains the co-signing requirement, random key generation, and return data (multisig/vault addresses, tx). It doesn't describe side effects, but building an unsigned tx is inherently non-destructive.

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?

Two sentences with no redundancy. Purpose is stated first, then the key requirement and return values. Every sentence serves a purpose, and the structure is front-loaded.

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 no output schema or annotations, the description covers the essential purpose, key parameters, and return format. It could mention the follow-up step (using create_execute) but is otherwise complete for a build tool.

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

Parameters4/5

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

Schema coverage is high (80%), so baseline is 3. The description adds value by explaining the critical 'createKey' parameter's role and the return data, which helps the agent understand the output. Other parameters are adequately described in the schema.

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 the tool builds an unsigned create-multisig transaction, specifying the key requirement (two signers: creator + createKey) and listing return values. It distinguishes from siblings like 'execute' by emphasizing 'unsigned' and build.

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

Usage Guidelines3/5

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

The description does not explicitly state when to use this tool or when to use alternatives. While the 'build' vs 'execute' naming hints at a two-step process, no guidance is provided on prerequisites or exclusions.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources