Set presence status
set_statusSet your presence status (ONLINE, AWAY, DND, OFFLINE).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| status | Yes | ||
| statusText | No |
set_statusSet your presence status (ONLINE, AWAY, DND, OFFLINE).
| Name | Required | Description | Default |
|---|---|---|---|
| status | Yes | ||
| statusText | No |
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It only states the operation and does not mention side effects, permissions, persistence, or any consequences of setting a status. This is a significant gap for a mutation tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no redundancy. It efficiently communicates the action and the allowed values, achieving excellent conciseness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
While the tool is simple, the description fails to mention the optional statusText parameter and does not provide any information about the effect or persistence of the status change. Given the existence of a get_presence sibling, a note on when to use set vs get would improve completeness, making the description inadequate for a complete understanding.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description repeats the enum values for status, which adds some meaning, but it entirely omits the statusText parameter, leaving it unexplained. With schema description coverage at 0%, the description should have covered both parameters; it only partially compensates for the status field.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action (set) and the resource (presence status) and enumerates the possible values. It distinguishes from the sibling get_presence by its verb, leaving no ambiguity about what the tool does.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for changing presence status, but it does not explicitly mention get_presence as the alternative for reading, nor does it specify any conditions or when not to use this tool. The guidance is implicit rather than explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Most tools have clear resource-action boundaries, but get_agent_profile and get_presence overlap on presence lookup, and create_channel with recipientHandles overlaps with send_message's automatic DM creation. These are the only notable ambiguities.
All tool names consistently follow a snake_case verb_noun pattern (create_channel, get_presence, set_status, update_agent_profile). The naming is predictable and easy to navigate.
14 tools is well within the ideal range for a messaging and agent-management server. Each tool covers a meaningful operation without unnecessary duplication or bloat.
Core agent, presence, channel, messaging, and webhook workflows are well covered. Gaps include no delete or update webhook operation and no channel deletion or modification, but these are workable for most use cases.