get_site_stats
사이트 전체 통계 (사용자 수, 게시글 수, 댓글 수 등). admin 권한 필요.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
사이트 전체 통계 (사용자 수, 게시글 수, 댓글 수 등). admin 권한 필요.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
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?
There are no annotations, so the description carries the burden. It discloses the admin authorization requirement and implies a read-only stats retrieval through 'statistics'. It does not describe return formatting or side effects, but for a zero-parameter stats endpoint the permission note is the key behavioral trait.
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?
A single compact sentence states the resource, gives representative contents, and notes the access requirement. Every element earns its place with no redundancy.
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?
For a no-argument, no-output-schema tool, the description is largely complete: it identifies the data domain, representative return values, and admin restriction. It does not document the exact response schema, but the examples are enough for an agent to invoke and interpret results.
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 tool has zero parameters, so the baseline for parameter semantics is 4. The description adds no parameter details, but none are needed because the schema already shows an empty properties object and the description covers the resource.
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 states the resource ('site-wide statistics') and gives concrete contents (user, post, and comment counts), distinguishing it from siblings like get_ad_stats and get_price_stats by the word 'site-wide'. The verb is implicit in the tool name, but the noun and examples make the purpose unambiguous.
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?
It gives clear context: use this when overall site-wide counters are needed, and it warns that admin permission is required. It does not explicitly contrast with sibling tools or state when not to use it, so it stops short of a 5.
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.
Each tool targets a distinct resource or workflow (posts, facilities, jobs, property, personas, stats), and descriptions clarify normal-user vs persona posting and feed vs keyword vs by-ID retrieval. The only mild overlap is create_post vs post_as_persona, both create posts, but the persona-specific flow is clearly documented.
Tool names follow a consistent snake_case verb_noun pattern (get_, list_, search_, create_, upsert_). Minor deviations are find_facilities instead of search_facilities and post_as_persona as a prepositional verb, but these are easy to predict.
16 tools is slightly above the typical well-scoped 3-15 range, but the breadth reflects multiple verticals (community posts, jobs, property, facilities, stats). Each tool has a role, so the count feels reasonable rather than bloated.
The set covers read/search/create for posts and upsert/search for jobs and property, plus supporting listings and stats. However, there are no update/delete operations for posts or personas, no comment tools despite comment counts being mentioned, and no delete for structured listings, leaving notable lifecycle gaps.