Skip to main content
Glama

create_document

Create a new mkdshare.DEV document. If visibility is omitted the document is owner-only (login_required, restricted to your email).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleYesDocument title
contentYesMarkdown content
expires_atNoISO 8601 datetime after which the document expires, e.g. 2026-06-01T00:00:00Z
visibilityNoWho can view the document. If the user didn't specify who should see it, ask them. Omitted = owner-only (login_required, restricted to your email).
editor_emailsNoComma-separated emails that can edit this document (in addition to the owner)
allowed_domainNoDomain allowed to view, e.g. company.com (domain_restricted visibility)
allowed_emailsNoComma-separated emails allowed to view (login_required visibility)
domain_can_editNoWhen true, all users in allowed_domain can edit (not just view)

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It discloses a key behavioral default: if visibility is omitted, the document is owner-only (login_required, restricted to your email). This is a meaningful security-relevant behavior beyond the schema. It does not cover authentication or success response, but the disclosed default is significant.

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 sentences, approximately 30 words, with the primary purpose front-loaded in the first sentence and the crucial default detail in the second. It is concise, free of filler, and every word adds value.

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

Completeness4/5

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

Despite the absence of an output schema and the presence of eight parameters, the schema descriptions are very thorough, covering all parameters with examples. The description adds the key default visibility behavior, which is the most important contextual nuance. It does not mention prerequisites or response format, but overall it is adequate for a create operation given the rich schema.

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 baseline is 3. The description adds no new parameter meaning beyond the schema; it repeats the visibility default that is already fully documented in the parameter description. All eight parameters are thoroughly described in the schema, so the description does not need to compensate.

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 clearly states the operation: 'Create a new mkdshare.DEV document.' The verb 'Create' and resource 'document' precisely define the purpose, and it is distinct from siblings like update_document. The additional sentence about visibility default adds purposeful nuance without confusing the primary action.

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?

The description provides clear context by mentioning the default visibility behavior when omitted, which is an important usage decision. However, it does not explicitly contrast with alternatives (e.g., update_document for editing) or state when not to use this tool. Still, the creation context is obvious and unambiguous.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.1/5.0
Disambiguation5/5

Each tool has a distinct role: document CRUD (create, get, update, archive), listing/searching, annotation create/list, and two auth helper tools. There is no overlap or ambiguity between them.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern with snake_case (e.g., create_document, list_annotations, request_device_auth). The naming is uniform and predictable across both document and auth tools.

Tool Count5/5

With 10 tools, the server is well-scoped for document management plus required auth flow. It covers the essential operations without being bloated or too thin.

Completeness3/5

Core document operations are covered (create, read, update, archive, list, search), but there is no hard delete or unarchive, and annotations only support create/list (no update/delete). Additionally, there is no explicit tool for sharing documents despite the mention of shared docs.

Resources