get_mock_logs
목업 서버에 들어온 요청 로그를 조회합니다.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | 최대 로그 수 (기본: 50, 최대: 100) | |
| mock_id | Yes | 목업 서버 ID |
목업 서버에 들어온 요청 로그를 조회합니다.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | 최대 로그 수 (기본: 50, 최대: 100) | |
| mock_id | Yes | 목업 서버 ID |
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It implies a read-only operation but does not explicitly confirm non-mutation, nor does it disclose any limits, error behavior, or whether the logs are the raw requests or processed summaries. There is no mention of authentication requirements or rate limits.
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, clear sentence with no wasted words; it front-loads the key action (조회) and the object (logs).
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 simple read tool with two parameters and no output schema, the description is minimally sufficient but lacking in details about return format, pagination behavior, or what constitutes a 'log.' The schema covers the limit parameter, but the overall context is thin.
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?
Schema coverage is 100% for both parameters with clear descriptions. The description adds no extra parameter meaning, but per the rubric baseline of 3 is appropriate when schema handles the semantics.
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?
Description uses specific verb '조회' (retrieve) and identifies the specific resource 'request logs of the mock server.' It clearly distinguishes from siblings like list_mocks or get_mock_endpoint, which concern mock definitions rather than logs.
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?
No guidance on when to use this tool vs alternatives, no mention of prerequisites or exclusions. The description merely states the function; it does not provide context for selection among sibling tools.
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 addresses a distinct operation: create, delete, list, get details, get logs, and update response. There is no overlap or ambiguity between any two tools.
All tool names follow a consistent verb_noun pattern in snake_case (e.g., create_mock, delete_mock, list_mocks). The verbs are clear and predictably map to actions, with only minor pluralization differences that do not cause confusion.
With exactly 6 tools, the server is well-scoped for its purpose of managing mock API servers. It provides all essential operations without excessive or redundant tools.
The tool surface covers the full lifecycle of a mock server: create, read (list and get details), update responses, and delete. Logs add extra visibility, and there are no obvious missing operations for the intended use case.