Skip to main content
Glama
log-10x

Log10x MCP Server

Official
by log-10x

Sign in (start browser flow)

log10x_signin_start
Read-only

Starts a browser-based Log10x sign-in by requesting an Auth0 device code, opening the user's browser with the code pre-filled, and returning the device code immediately.

Instructions

Step 1 of the Log10x browser sign-in chain. Call this for any of these phrasings: 'sign me up for Log10x', 'create a Log10x account', 'log me in to Log10x', 'set up my Log10x account', 'switch from demo to my own data'. Requests an Auth0 device code, opens the user's browser to auth.log10x.com with the user_code pre-embedded, and returns IMMEDIATELY (no polling). Response carries user_code, verification_uri_complete, and the opaque device_code. What the model MUST do after this returns: (1) show the user the user_code and verification_uri_complete so they can verify the code in their browser matches, then (2) AUTOMATICALLY call log10x_signin_complete with { device_code: "<the device_code from this response>" } as the next tool call. The user does NOT need to ask for that second step. For pasted-key sign-in instead of browser: skip this tool and call log10x_signin_complete directly with { api_key: "<key>" }.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
dataNo
toolYes
viewNosummary
imagesNo
actionsNo
summaryYes
warningsNo
truncatedNo
next_cursorNo
render_hintNo
generated_atYes
schema_epochYes
schema_versionYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.30.7

TDQS

A4.8/5.0
Behavior5/5

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

Annotations already cover the readOnly/openWorld/idempotent profile, and the description adds substantially more: it returns IMMEDIATELY with no polling, it opens the user's browser to auth.log10x.com with user_code pre-embedded, it returns user_code/verification_uri_complete/device_code, and it mandates the automatic follow-up call with the device_code. That is rich, non-obvious behavioral context an agent would otherwise have to guess.

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?

Front-loaded with the chain-step identity and well-organized into when-to-call, what-it-returns, and required-next-step sections. It is long, and the enumerated phrasing list plus bold emphasis is somewhat repetitive, but each section carries actionable information for a multi-step auth flow.

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?

An output schema exists, yet the description still clarifies the immediate-return semantics and the mandatory second call, closing the loop between the two sibling tools. Nothing an agent needs to invoke this correctly or route the chain 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?

Zero input parameters, so the baseline is 4; there is nothing to disambiguate beyond the empty object schema. The description instead details response fields, which is useful but not parameter semantics.

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?

States a specific verb and resource (initiate the Log10x browser sign-in) and explicitly positions itself as 'Step 1 of the Log10x browser sign-in chain,' naming the sibling log10x_signin_complete as the follow-on step. An agent can distinguish it from signin_complete and login_status without opening any schema.

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

Usage Guidelines5/5

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

Lists the triggering phrasings ('sign me up', 'log me in', 'switch from demo to my own data') and gives an explicit exclusion + alternative: for pasted-key sign-in, skip this tool and call log10x_signin_complete directly. When-to-use, when-not-to-use, and the alternative are all stated.

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