Skip to main content
Glama

Server Details

Self-destructing secret sharing for AI agents: encrypted burn links for credentials, plus an agent-to-agent dead-drop with exactly-once claim semantics. RAM-only, no database, open source (MIT). Source: https://github.com/mmmpym/flashpaper

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

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/5 across 4 of 4 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool targets a distinct operation: create, claim, burn, and check status. Although claim and burn both result in destruction, their contexts (deposited secret vs. own vault) are clearly separated by the descriptions.

Naming Consistency5/5

All tools follow a consistent verb-first snake_case pattern (burn, check, claim, create). Minor variance in adverb/noun composition does not harm recognizability.

Tool Count5/5

With 4 tools, the set is well-scoped for a focused one-time-secret service. Each tool covers a necessary part of the lifecycle without redundancy.

Completeness5/5

The lifecycle is fully covered: create, claim (read+consume), burn (destroy), and status check. No obvious missing operations for a one-time secret vault.

Available Tools

4 tools
burn_secret_immediatelyAInspect

Immediately purge a Flashpaper secret vault from RAM using its destroy token.

ParametersJSON Schema
NameRequiredDescriptionDefault
vaultIdYesThe vault UUID.
destroyTokenYesThe destroy token.
Behavior4/5

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

With no annotations provided, the description carries the burden. It explicitly states the action (purge from RAM) and the required mechanism (destroy token), making the destructive nature evident. It doesn't cover edge cases like invalid tokens or success responses, but the core behavioral trait is transparent.

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?

A single, well-structured sentence delivers all essential information without any waste. Key terms are front-loaded ('Immediately purge', 'destroy token'), making it easy for an agent to parse.

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 two-parameter destructive action with no output schema, the description covers the essential context: what happens, to what, and how. It doesn't describe return values or failure modes, but for this simple tool, that's an acceptable gap.

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 full descriptions for both parameters (vaultId and destroyToken), so the description adds little beyond reinforcing their role. Schema coverage is 100%, meeting the baseline for this dimension.

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 'purge' and names the exact resource ('Flashpaper secret vault') and mechanism ('destroy token'), making the tool's function unmistakable. It also distinguishes itself from siblings like create_secret_burn_link and check_secret_status by focusing on immediate destruction.

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 clearly conveys this is for immediate destruction using a destroy token, implying a distinct use case from checking status or claiming secrets. It doesn't explicitly name alternatives or when-not-to-use, but the purpose is clear enough to guide selection.

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

check_secret_statusAInspect

Check status of a Flashpaper secret vault without revealing or burning it.

ParametersJSON Schema
NameRequiredDescriptionDefault
vaultIdYesThe vault UUID.
Behavior3/5

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

No annotations are provided, so the description carries the burden. It discloses that the operation does not reveal or burn the secret, which is a key behavioral trait, but it does not mention return format, permissions, or other side effects.

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?

A single, focused sentence that states the action and key constraint without any fluff.

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 is simple (one parameter, no output schema, no annotations), and the description clarifies the non-destructive nature, but it does not describe what the status output contains or any prerequisites, leaving some ambiguity for an agent.

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 coverage is 100% with vaultId described as 'The vault UUID,' so the schema already provides full parameter information. The description adds no additional parameter semantics, so baseline 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 a specific verb 'check' with resource 'status of a Flashpaper secret vault' and explicitly disambiguates from siblings by stating 'without revealing or burning it,' which contrasts with burn_secret_immediately and claim_secret.

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 implies the appropriate use case (inspecting status without destruction) via the 'without revealing or burning' clause, but it does not explicitly name alternatives or when-not-to-use scenarios, so a clear context with no exclusions.

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

claim_secretAInspect

Claim and burn a secret deposited by another agent. Returns plaintext exactly once. A 404 means it was already consumed — treat that as a possible interception signal. Agents must use POST /api/agent/vault/:id/claim — never fetch the /secret/ HTML page.

ParametersJSON Schema
NameRequiredDescriptionDefault
keyYesThe base64url decryption key.
vaultIdYesThe vault UUID to claim.
Behavior4/5

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

With no annotations, the description carries the full burden and discloses key behaviors: returns plaintext exactly once, 404 means already consumed (possible interception), and the burn side-effect. It does not cover all error cases or auth requirements, but the most critical traits are transparently stated.

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 three sentences long, front-loaded with the main purpose, and every sentence adds critical information (action, return semantics, error handling, endpoint preference). No redundant or filler content.

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 lacking an output schema and annotations, the description covers return behavior, one important error condition with security implications, and the correct HTTP method. It omits other potential errors (e.g., wrong key, nonexistent vault) but is reasonably complete for a simple two-parameter tool.

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 coverage is 100% for both parameters (key and vaultId), so the baseline is 3. The description adds no additional parameter-specific meaning beyond what the schema already provides, mentioning the endpoint but not the parameters directly.

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 verb and resource: 'Claim and burn a secret deposited by another agent.' It also specifies the unique one-time return behavior, distinguishing it from siblings like burn_secret_immediately or check_secret_status. This is a specific, well-differentiated purpose.

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 for when to use this tool (when needing to claim a secret) and gives explicit usage instructions, such as using POST /api/agent/vault/:id/claim and never fetching the HTML page. It does not explicitly name alternative tools for other scenarios, but the guidance is sufficient for most agents.

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

  • A
    license
    A
    quality
    A
    maintenance
    GTM signal intelligence suite for AI agents. Six tools: hiring signals, tech stack detection, company-to-LinkedIn resolution, ICP scoring, job board scanning, and a combined signals aggregator. Built for outbound sales workflows.
    11
    737
    1
    MIT
  • F
    license
    -
    quality
    C
    maintenance
    Browse IndustryLens's published competitive-intelligence reports and head-to-head competitor comparisons from any AI agent — real, source-backed data.

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources