Skip to main content
Glama

Server Details

Share markdown as public links from your AI assistant — expiring or permanent, no API key.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
invisible-hand/docs-md.com
GitHub Stars
0

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.1/5 across 3 of 3 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool maps to a distinct action: sharing creates, update_share modifies, delete_share removes. No overlap in purpose, and the edit token requirement clearly separates operations.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern: share_markdown, update_share, delete_share. The naming is uniform and predictable.

Tool Count5/5

With only three tools, the server is tightly scoped to its purpose: sharing and managing markdown shares. Each tool is essential and the count is appropriate.

Completeness5/5

The tool set covers the full lifecycle of a share: create (share_markdown), update (update_share), and delete (delete_share). Reading is handled via the public URL, so no additional tool is needed.

Available Tools

3 tools
delete_shareDelete Shared MarkdownAInspect

Permanently delete a share using its id and edit token.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesThe share id (the URL path segment)
edit_tokenYesEdit token returned when the share was created
Behavior4/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It explicitly declares permanence (implying irreversibility) and requires an edit token, which signals authorization and helps predict that unauthorized deletions will fail. This covers key safety aspects, though error handling and side effects are not discussed.

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 a single sentence with no redundant words. It front-loads the primary action ('Permanently delete') and immediately specifies the required identifiers, making it highly efficient and easy to parse.

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 simple delete operation with complete schema coverage and no output schema, the description adequately covers the action, required inputs, and important context (permanence, token). No additional return-value explanation is needed. The information provided is sufficient for an agent to invoke this tool correctly.

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?

The input schema already provides 100% description coverage, fully explaining both 'id' as the URL path segment and 'edit_token' as the token from creation. The description merely restates these parameter names without adding new meaning, so the baseline score of 3 is appropriate.

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 tool's purpose with a specific verb ('delete'), a resource ('share'), and a critical qualifier ('permanently'), making it easy to distinguish from siblings that create or update shares. The scope is unambiguous and leaves no doubt about the operation.

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

Usage Guidelines3/5

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

Usage is implied: use when you need to permanently delete a share. However, the description does not explicitly state when to use this tool over alternatives (e.g., 'instead of update_share') or mention any prerequisites beyond requiring the id and edit token. The guidance is functional but minimal.

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

share_markdownShare MarkdownAInspect

Share a markdown file and get a public URL. Returns an edit token that can be used later to update or delete the share.

ParametersJSON Schema
NameRequiredDescriptionDefault
expiryNoHow long the link stays live (default 30d; "never" keeps it forever)
contentYesThe markdown content to share
filenameNoOptional filename for the markdown file
Behavior4/5

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

With no annotations, the description carries the burden of behavioral disclosure. It discloses that the tool produces a public URL and returns an edit token for future management, which are key behaviors not visible in the schema. It could add more (e.g., token secrecy, persistence), but for a simple creation tool this is solid context.

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 with no wasted words. The primary action is front-loaded ('Share a markdown file'), and the second sentence adds the essential token detail without redundancy.

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?

For a tool with three parameters and no output schema, the description is nearly complete: it states the public URL outcome and the edit token. It does not explain the response shape or default expiry, but the schema already covers expiry, and the overall context is simple enough that the description suffices.

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?

The input schema provides 100% coverage of all three parameters with descriptions, so the baseline is 3. The tool description does not add any parameter-level meaning; it only references the overall action, which is already implied by the schema.

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 tool's purpose: 'Share a markdown file and get a public URL.' It uses a specific verb ('share') and resource ('markdown file'), and the mention of an edit token for later updates/deletes distinguishes it from sibling tools like delete_share and update_share.

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 implies when to use this tool (to create a share) and hints at alternatives by saying the token can be used later to update or delete. However, it does not explicitly name the sibling tools or provide exclusion criteria, so it stops short of full usage guidance.

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

update_shareUpdate Shared MarkdownAInspect

Replace the content of an existing share using its id and edit token.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesThe share id (the URL path segment)
contentYesThe new markdown content
filenameNoOptional new filename
edit_tokenYesEdit token returned when the share was created
Behavior4/5

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

With no annotations provided, the description carries the full burden of disclosing behavior. It explicitly states the destructive action ('Replace the content') and the auth requirement ('using its id and edit token'), covering the two most critical behavioral traits. However, it does not mention side effects on other fields like filename or whether the operation is reversible, which prevents a higher score.

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 a single, front-loaded sentence with the action verb 'Replace' at the start. There is no wasted or redundant wording; every word contributes to the meaning. This is an exemplar of conciseness.

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

Completeness3/5

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

The tool has 4 parameters, no output schema, and no annotations, so the description must compensate for the lack of structure. It clearly explains the core action and auth requirement, but leaves ambiguity about the optional filename behavior (e.g., whether filename changes require content replacement) and does not describe the return value or potential errors. This is adequate for a simple update tool but not fully complete.

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?

The input schema has 100% parameter description coverage, so the description adds little beyond what the schema already provides. It reinforces the roles of id and edit_token for identifying the share, but does not clarify any additional semantics (e.g., how filename interacts with content replacement). The schema already carries the parameter details, so the baseline of 3 is appropriate.

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 the specific verb 'Replace' and clearly identifies the resource as 'the content of an existing share,' which distinguishes it from the sibling tools share_markdown (create) and delete_share (delete). The mention of 'existing share' reinforces that this is an update operation, making 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.

Usage Guidelines4/5

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

The description provides clear context that this tool is for modifying an existing share, not for creating or deleting shares. However, it does not explicitly name alternatives or state when not to use it, so it stops short of full usage guidelines. The sibling tool names are inferable but not referenced.

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

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.