Skip to main content
Glama
onlygummy

line-desktop-mcp

by onlygummy

LINE status

line_status
Read-onlyIdempotent

Verify LINE desktop setup by checking Chrome, extension, page, and login readiness; get step-by-step guidance if any step fails.

Instructions

Check the 5 readiness steps: Chrome, attach, extension, page, login.

Call this first when unsure the setup works. On failure the result carries a next field telling the user what to do.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.1.0

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and openWorldHint, so the description's main job is to add operational detail. It does this by listing the 5 readiness steps checked and disclosing that failures return a `next` field with user guidance, which is genuinely useful beyond the structured metadata.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two tight sentences: the first names the resource and steps, the second gives invocation priority and failure behavior. There is no filler or repetition of schema/annotation information.

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

Completeness5/5

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

For a tool with zero parameters and an output schema, the description supplies everything an agent needs: what is checked, when to call it, and what to do with a failed result. The annotations cover safety and idempotency, so nothing important is missing.

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

Parameters4/5

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

There are no parameters, and the schema fully documents this with an empty properties object, so the baseline is 4. The description adds no parameter-level detail, but none is needed.

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

Purpose5/5

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

The description uses a specific verb ('Check') and a concrete resource (the 5 readiness steps: Chrome, attach, extension, page, login). It clearly states what the tool does and is easy to distinguish from sibling tools like wait_login or clear_session.

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

Usage Guidelines4/5

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

It explicitly tells the agent to 'Call this first when unsure the setup works', which gives a clear trigger condition. It does not enumerate when-not-to-use cases or alternatives, but the priority guidance is strong enough to route the agent correctly.

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