Skip to main content
Glama
ptrel1

NapCat MCP Server

by ptrel1

send_private_msg

Send a private QQ message to a specified user by their QQ number, with optional auto-escaping for message content.

Instructions

Send private message

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
messageYesMessage content
user_idYesUser QQ number
auto_escapeNoWhether to auto-escape

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.0

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations, the description carries the full burden, but it only restates the action. It does not disclose side effects, permission requirements, rate limits, or what happens after send, although 'Send' at least implies a mutating action.

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?

A single short sentence with no filler, front-loading the core action. It is appropriately concise, though the brevity comes at the cost of useful context.

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

Completeness2/5

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

Despite 100% schema coverage, the absence of annotations, output schema, or usage guidance leaves the agent without context on when to choose this tool, how it behaves as a write operation, and how it differs from sibling send tools.

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 the parameters. The description adds no additional semantic detail about user_id, message, or auto_escape, so the baseline of 3 applies.

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?

The description uses a clear verb and resource ('Send private message'), so an agent knows the operation. However, it does not distinguish this from sibling tools like send_msg and send_group_msg, leaving the differentiation to the tool name.

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?

There is no guidance on when to use this tool versus alternatives. No mention that this is for direct/private messages only and that group messages should go to send_group_msg or send_msg.

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