tempmd
Server Details
Publish artifacts to one stable public temp.md link that updates in place. No account needed.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- huangdun/tempmd-mcp
- GitHub Stars
- 0
- Server Listing
- tempmd-mcp
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
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.
Tool Definition Quality
Average 3.8/5 across 8 of 8 tools scored. Lowest: 2.9/5.
Each tool has a clearly distinct purpose: inspecting status, listing owned, publishing, recovering tokens, restoring expired, toggling comments, snapshotting, and updating. No overlapping functionality.
All tool names follow a consistent verb_noun pattern in snake_case (e.g., get_temp_status, list_temps, publish_temp). No deviations or mixed conventions.
8 tools is well-scoped for managing temporary content, covering creation, inspection, update, restore, comments, snapshots, and token management without excess or deficiency.
Core lifecycle operations are present (create, read, update, restore), plus extras like snapshots and comments. The only notable gap is the absence of a permanent delete/unpublish tool.
Available Tools
8 toolsget_temp_statusGet Temp statusARead-onlyInspect
Inspect lifecycle, expiry, restore eligibility, ownership, moderation, and settings.
| Name | Required | Description | Default |
|---|---|---|---|
| temp_id | Yes | The Temp ID. | |
| update_token | No | Scoped Temp update token. May be omitted when the MCP Authorization header contains an account API key that owns the Temp. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=true and openWorldHint=true, so the description adds value by specifying the exact scope of inspection (lifecycle, expiry, etc.). It does not contradict annotations and provides behavioral context beyond the safety hints.
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 concise sentence that is front-loaded with the verb 'inspect'. Every word adds value, no wasted repetition or filler.
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 no output schema, the description lists the categories of information returned (lifecycle, expiry, etc.), which gives the agent a good sense of the output. It is sufficiently complete given the low complexity and rich annotations.
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 description coverage is 100% with both parameters clearly described. The description does not add any additional meaning to the parameters (temp_id and update_token) beyond what the schema provides. Baseline 3 is appropriate.
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?
The description uses the specific verb 'inspect' and lists the aspects inspected (lifecycle, expiry, restore eligibility, ownership, moderation, settings), clearly distinguishing this read-only detail tool from siblings like list_temps (list all), update_temp (modify), etc.
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 explicit guidance on when to use this tool versus alternatives. The description implies usage for inspecting a specific temp, but does not state when to choose it over list_temps or other tools, nor does it mention prerequisites or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_tempsList account TempsARead-onlyInspect
List Temps owned by the account API key supplied in the MCP Authorization header.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and openWorldHint=true. The description adds the key behavioral trait that it lists only Temps owned by the provided API key, which is useful context beyond the annotations.
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?
The description is a single concise sentence that front-loads the core purpose without any unnecessary words.
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 list tool with no parameters and no output schema, the description provides the essential context of ownership. It could mention pagination or ordering, but the current level is adequate for a straightforward listing operation.
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?
There are no parameters, so the schema coverage is 100%. The baseline for 0 parameters is 4; the description does not need to add parameter info but does explain the implicit authorization context.
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?
The description clearly states the tool lists 'Temps owned by the account API key', specifying both the resource and the scope, distinguishing it from sibling tools like get_temp_status or publish_temp.
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?
The description does not provide any guidance on when to use this tool versus alternatives, nor does it mention when not to use it or any prerequisites beyond the API key.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
publish_tempPublish a new TempAIdempotentInspect
Publish an inline text or base64 bundle to a stable public URL. Send index.html as the main page. Repeated identical calls are idempotent. If the MCP connection uses a temp.md account API key, the Temp is owned by that account immediately.
| Name | Required | Description | Default |
|---|---|---|---|
| files | Yes | ||
| title | No | ||
| spa_mode | No | ||
| idempotency_key | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare idempotentHint=true and destructiveHint=false. The description adds ownership detail based on API key but does not describe response behavior or side effects beyond the public URL.
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?
Three sentences with no fluff. The first sentence states the core purpose, and subsequent sentences add critical guidelines. Front-loaded and efficient.
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?
Given no output schema, the description should indicate return values (e.g., the public URL). It covers the main action and key behavior but omits response details, leaving the agent guessing about the result.
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?
With 0% schema description coverage, the description partially compensates by mentioning 'index.html' for the path and 'inline text or base64' for encoding. However, it does not explain title, spa_mode, or idempotency_key.
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?
The description clearly states the verb 'publish' and the resource 'inline text or base64 bundle to a stable public URL'. It distinguishes itself from siblings like 'update_temp' by focusing on initial publication.
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?
It provides specific guidance to send index.html as the main page and explains idempotency and ownership. However, it does not explicitly exclude use cases like updates or mention alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
recover_update_tokenRecover a Temp update tokenBDestructiveInspect
Rotate every prior scoped update token and return one replacement. Requires an owning account API key in the MCP Authorization header.
| Name | Required | Description | Default |
|---|---|---|---|
| temp_id | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate destructiveHint=true and openWorldHint=true. The description adds context that the tool rotates tokens, implying mutation, but does not elaborate on side effects beyond 'rotate every prior scoped update token'.
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?
The description is two sentences with no waste. It front-loads the core action and then states the key requirement. Efficient and direct.
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 tool with one parameter and no output schema, the description is mostly adequate but lacks explanation of the parameter. It provides purpose and auth but not enough for an agent to correctly invoke the tool without additional context.
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?
The single parameter 'temp_id' has no description in the schema (0% coverage) and the description does not explain what 'temp_id' represents. The description refers to 'scoped update token' but does not connect it to the parameter.
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?
The description states a specific verb ('Rotate every prior scoped update token') and resource ('scoped update tokens'), and the action is distinct from sibling tools like get_temp_status or list_temps. It clearly defines what the tool does.
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?
The description includes the authentication requirement ('Requires an owning account API key'), but does not provide guidance on when to use this tool versus alternatives like restore_temp or publish_temp.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
restore_tempRestore an expired TempAIdempotentInspect
Reactivate an expired Temp during its restore grace period without changing its URL.
| Name | Required | Description | Default |
|---|---|---|---|
| temp_id | Yes | The Temp ID. | |
| update_token | No | Scoped Temp update token. May be omitted when the MCP Authorization header contains an account API key that owns the Temp. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate idempotency (idempotentHint=true) and non-destructiveness (destructiveHint=false). The description adds that the URL remains unchanged, which is valuable behavioral context. However, it could mention what happens if the Temp is not expired or outside the grace period.
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?
The description is a single, well-structured sentence of 12 words. It is front-loaded with the verb 'Reactivate' and conveys all essential information without unnecessary verbiage.
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?
Given the tool's simplicity (2 parameters, no output schema, no nested objects), the description covers the core purpose and constraints. It lacks explicit handling of auth/update_token edge cases, but the schema and annotations fill some gaps. Overall, it is adequately complete.
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%, and both parameters are adequately described in the schema. The description does not add meaning beyond the schema; it focuses on the tool's effect rather than parameter details. Thus, baseline 3 is appropriate.
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?
The description clearly states the action ('Reactivate an expired Temp'), the condition ('during its restore grace period'), and the key behavioral detail ('without changing its URL'). It effectively distinguishes the tool from siblings like publish_temp or update_temp, which serve different purposes.
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?
The description implicitly tells when to use this tool: when a Temp is expired and within its restore grace period. It does not explicitly state when not to use it or provide alternatives, but the sibling tool names (e.g., get_temp_status, recover_update_token) offer context for alternative actions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
set_commentsEnable or disable commentsCDestructiveIdempotentInspect
Toggle pinned visitor feedback on a Temp.
| Name | Required | Description | Default |
|---|---|---|---|
| enabled | Yes | ||
| temp_id | Yes | The Temp ID. | |
| update_token | No | Scoped Temp update token. May be omitted when the MCP Authorization header contains an account API key that owns the Temp. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds no behavioral context beyond what the annotations provide (openWorldHint, idempotentHint, destructiveHint). It does not explain the effects of toggling, potential side effects, or required permissions.
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?
The description is a single sentence with no wasted words. However, the term 'Toggle' is slightly inaccurate given the boolean parameter, which slightly reduces clarity efficiency.
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?
The description lacks context about when to use this tool, error conditions, and what happens on success. No output schema exists, so the agent is left uninformed about the response.
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?
The description provides meaning for the enabled parameter ('pinned visitor feedback') that is not in the schema, but lacks detail for all parameters. With 67% schema description coverage, the description adds moderate value beyond the schema.
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?
The description states the tool toggles pinned visitor feedback on a Temp, which is clear and distinguishes it from sibling tools like update_temp or publish_temp. However, using 'Toggle' is slightly imprecise since the enabled parameter sets a specific boolean state rather than flipping the current state.
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 versus alternatives. It does not mention prerequisites, such as whether the Temp must exist or be in a certain state, nor when to use get_temp_status or update_temp instead.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
snapshot_tempFreeze a snapshotAInspect
Create a fixed snapshot URL for the current Version while the canonical URL continues to track the latest Version.
| Name | Required | Description | Default |
|---|---|---|---|
| label | No | ||
| temp_id | Yes | The Temp ID. | |
| update_token | No | Scoped Temp update token. May be omitted when the MCP Authorization header contains an account API key that owns the Temp. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds context beyond annotations: it explains that a fixed snapshot URL is created while the canonical URL continues to track the latest version. This is non-destructive (consistent with destructiveHint=false) and adds behavioral nuance.
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?
The description is a single clear sentence with no unnecessary words. It is well-structured and front-loaded with the core action.
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?
The description explains the core purpose but does not mention return values (no output schema) or what the user receives upon success. Given the tool's moderate complexity and available annotations, it is minimally adequate but could be enhanced.
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?
The description does not add any meaning beyond the input schema. The schema already covers temp_id and update_token; label is missing from the description. With 67% schema coverage, the description fails to compensate for the undocumented label parameter.
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?
The description clearly states the tool creates a fixed snapshot URL for the current version, distinguishing it from the canonical URL that tracks the latest. This differentiates it from sibling tools like publish_temp or restore_temp.
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?
The description implies usage when a fixed reference to a version is needed, but it does not explicitly state when to use this tool versus alternatives like publish_temp or restore_temp, nor does it provide exclusion criteria.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
update_tempUpdate an existing TempADestructiveIdempotentInspect
Atomically publish a new inline bundle behind the same canonical URL. The previous Version stays live if this call fails.
| Name | Required | Description | Default |
|---|---|---|---|
| files | Yes | ||
| title | No | ||
| temp_id | Yes | The Temp ID. | |
| spa_mode | No | ||
| update_token | No | Scoped Temp update token. May be omitted when the MCP Authorization header contains an account API key that owns the Temp. | |
| idempotency_key | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations provide idempotentHint, destructiveHint, openWorldHint. Description adds atomicity and rollback behavior ('previous Version stays live if this call fails'), which is beyond annotations. Does not detail authorization requirements or rate limits beyond what schema provides.
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?
Two sentences, no wasted words. Front-loaded with key behavior. Every sentence provides critical information.
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?
Given complexity (6 params, nested array) and presence of annotations, description covers the key behavioral traits (atomic update, fallback). No output schema, but description does not need to explain return values. Could mention idempotency support.
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 33% (6 params, but only temp_id and update_token have descriptions in schema; files array items have descriptions). Description adds no additional parameter meaning beyond what's in schema. Baseline 3 is appropriate.
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 clearly states it atomically publishes a new bundle behind the same URL, with clear verb 'publish' and resource 'Temp'. Distinguishes from sibling tools like publish_temp by focusing on updating an existing temp.
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 explicit guidance on when to use versus alternatives like publish_temp or restore_temp. The description implies it's for updating an existing temp, but does not state when not to use or provide comparative context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Your Connectors
Sign in to create a connector for this server.