Skip to main content
Glama

noetic.set_pricing

Set owner-defined pricing tiers for a space, including currency and scheduling, to control charging rules.

Instructions

Set the owner-defined pricing schedule for a space (owner-governed).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
spaceNo
tiersNo
currencyNo
sessionIdNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

C2.4/5.0
Behavior2/5

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

No annotations are present, so the description must disclose side effects and constraints. It reveals that pricing is owner-governed but does not state whether the call overwrites the existing schedule, requires authentication, or has persistence or validation side effects.

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?

Single sentence, front-loaded, and without fluff. The parenthetical 'owner-governed' is somewhat redundant with 'owner-defined' but is not harmful.

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

Completeness1/5

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

For a 4-parameter mutation with no annotations, no output schema, and an undocumented nested tiers object, this description is far too thin. An agent cannot know required fields, tier shape, currency expectations, or what happens to existing pricing.

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

Parameters1/5

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

Schema description coverage is 0% and the description defines no parameters. 'tiers' is an opaque nested object, and 'currency' and 'sessionId' have no format, role, or example explained.

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

Purpose4/5

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

States a specific action ('Set') and resource ('owner-defined pricing schedule for a space'), and the parenthetical adds an ownership constraint. However, it does not explicitly differentiate from general mutation tools like noetic.mutate or permission tools like noetic.authority.

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

Usage Guidelines2/5

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

No guidance on when to call set_pricing instead of related tools such as noetic.mutate or noetic.authority. The owner-governed hint implies a prerequisite but does not explain when this tool is appropriate or when an alternative should be used.

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