Skip to main content
Glama
PerkOS-xyz

Nayori Agent MCP

Official
by PerkOS-xyz

nayori_apply_to_job

Apply to a Nayori job as a provider. Verify job availability and agent eligibility, then submit your application with an optional pitch. Returns a transaction ID; broadcast not confirmation.

Instructions

WRITE (mainnet). Apply to a Nayori job as a provider through job-applications-v1. Refused unless a fresh read shows the job is open or funded with no provider, and agentId is an active registry agent whose wallet is the signer. Applying moves no funds; the client still has to assign the provider. note: optional printable ASCII, max 140. Returns a txid; broadcast is not confirmation.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
noteNoOptional pitch shown to the client, printable ASCII, max 140.
assetYes
jobIdYes
agentIdYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A4.2/5.0
Behavior4/5

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

Annotations indicate readOnlyHint=false (write), destructiveHint=false, and openWorldHint=true. The description adds context beyond annotations by specifying that applying moves no funds, returns a txid, and broadcast isn't confirmation. It also mentions validation conditions (refusal on stale reads). This adds useful behavioral insight without contradicting annotations.

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?

The description is concise and well-structured. The 'WRITE (mainnet)' prefix immediately signals intent, followed by the action, conditions, note format, and return behavior. Every sentence adds value with no redundancy or fluff. It is appropriately 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?

For a write operation with 4 parameters and no output schema, the description covers the essential aspects: preconditions, side effects, return type, and broadcast caveat. It does not explain the asset parameter's meaning or enumerate possible error scenarios, but given the minimal schema and annotations, it is sufficient for an agent to call it correctly in context.

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 25% (only 'note' has a description). The description adds meaning by explaining that agentId must be an active registry agent whose wallet is the signer, and implies that jobId corresponds to an open/funded job. However, the 'asset' parameter is not explained beyond the enum values, and the description doesn't clarify the relationship between jobId and agentId beyond those hints. Given the low schema coverage, the description partially compensates but is not exhaustive.

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 action: 'Apply to a Nayori job as a provider' and specifies the target ('through job-applications-v1'). It distinguishes this from sibling tools like nayori_register_agent (registration) and nayori_submit_work (submission), and the WRITE prefix clarifies its mutating nature. This is specific and 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?

The description gives explicit preconditions: 'Refused unless a fresh read shows the job is open or funded with no provider' and 'agentId is an active registry agent whose wallet is the signer.' It also clarifies that this tool does not move funds and that the client must still assign the provider, which implies when a different tool (nayori_client_assign_provider) would be needed. However, it does not name alternative tools explicitly or state when NOT to use it, leaving some inference to the agent.

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