Skip to main content
Glama

verify_login_signature

LEGACY wallet flow — new integrations should use create_account and launch_campaign (API key + prepaid balance, no wallet). Second step of dashboard authentication. Verifies your wallet signature against the nonce message from get_login_nonce. Returns a sessionToken (valid 24 hours) and your campaign list. Pass the sessionToken to list_campaigns, get_campaign_details, and export_campaign_data.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
messageYesExact message string returned by get_login_nonce (must match exactly)
signatureYesBase58-encoded Ed25519 signature of the message returned by get_login_nonce
walletAddressYesYour Solana wallet public key (base58)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.5/5.0
Behavior4/5

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

With no annotations, the description carries the burden and discloses valuable behavior: it is a legacy auth step, returns a 24-hour sessionToken and campaign list, and requires a prior nonce. It does not detail side effects or error behavior, but the described lifecycle is unusually transparent for an unannotated tool.

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?

Three tight sentences front-load the most important routing decision (legacy vs new), then state purpose, return value, and downstream usage. No wasted words.

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

Completeness5/5

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

There is no output schema, so the description correctly explains the return contract (sessionToken, 24h validity, campaign list) and how to pass it forward. Combined with full schema coverage for parameters, an agent has what it needs to call and continue the flow.

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 description coverage is 100%, so the schema already documents all three parameters well. The description reinforces that message/signature come from get_login_nonce, but adds little parameter-level meaning beyond 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?

States a specific action ('Verifies your wallet signature against the nonce message from get_login_nonce') and positions it as the second step of dashboard authentication. The legacy-vs-new distinction further separates it from create_account/launch_campaign and from the nonce-fetching sibling get_login_nonce.

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 new integrations should use create_account/launch_campaign instead, and tells agents to invoke this after get_login_nonce. It also names the downstream tools that consume the returned sessionToken, so an agent knows both prerequisites and next steps.

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