Skip to main content
Glama

Server Details

Excalidraw & document parsing API with machine-native x402 micropayments. Agents pay per call with no signup. Free tier available. OpenAPI spec published; LLM-readable docs at https://nanoempireai.com/llms.txt Pricing: free 5/day · basic $0.005/call · premium $0.05/call unlimited

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 DescriptionsC

Average 3/5 across 2 of 2 tools scored.

Server CoherenceA
Disambiguation4/5

The two tools are mostly distinct because they produce different outputs: a NetworkX DAG versus an executable A2A Swarm template. Some ambiguity remains because both involve parsing diagrams, and it is unclear whether decompose_diagram consumes the DAG produced by parse_excalidraw.

Naming Consistency5/5

Both tool names follow a consistent verb_noun snake_case pattern: decompose_diagram and parse_excalidraw. The verbs and nouns clearly describe the operation and target.

Tool Count3/5

Two tools is borderline for a parser server; each tool seems purposeful, but the overall surface is quite thin. It fits the small-scope feel of the server but leaves little flexibility.

Completeness3/5

The server offers two core conversions, but there is no obvious connection between the parsed DAG and the decomposition step, and no way to inspect or further process intermediate results. Other diagram formats or template validation are also not covered.

Available Tools

2 tools
decompose_diagramCInspect

Parses a diagram and decomposes it into an executable A2A Swarm task template.

ParametersJSON Schema
NameRequiredDescriptionDefault
contentYes
Behavior2/5

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

No annotations are provided, so the description bears the full burden. It only says 'parses' and 'decomposes,' leaving unclear what input content is expected, what the output looks like, whether the operation has side effects, and what constitutes a valid diagram. Minimal behavioral detail is disclosed.

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?

The description is only one sentence and is front-loaded with the core action. There is no filler or extraneous text, which makes it memorable and succinct. It does sacrifice useful detail for conciseness, but it is well-structured for its length.

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

Completeness2/5

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

Given there is no output schema, no annotations, and zero schema description coverage for the required parameter, the description is incomplete. It defines the high-level purpose but does not supply necessary contextual details like input requirements, format, or relationship to parse_excalidraw. An agent needs more context to make a reliable call.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema has 0% description coverage, and the only parameter, content, is simply a string. The description references 'a diagram' but does not explain that content must contain diagram data or in what format. The agent gets no extra semantic meaning to invoke the tool confidently.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific action and product: 'Parses a diagram and decomposes it into an executable A2A Swarm task template.' It identifies the resource (diagram) and the output type clearly. It does not explicitly distinguish itself from parse_excalidraw, but it is not a tautology.

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

Usage Guidelines2/5

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

There is no guidance on when to use the tool versus the sibling parse_excalidraw, and no mention of input qualifications or alternatives. An agent must infer entirely from the tool name and the vague phrase 'diagram.' This leaves the intended usage underdetermined.

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

parse_excalidrawBInspect

Parses Excalidraw JSON or Markdown diagrams into a validated NetworkX DAG.

ParametersJSON Schema
NameRequiredDescriptionDefault
formatNo
contentYesRaw Excalidraw JSON or Markdown string
Behavior3/5

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

No annotations are provided, so the description carries the behavioral disclosure burden. It does add useful behavior by stating the output is a 'validated NetworkX DAG', but it does not describe error handling, invalid input behavior, or auto-detection semantics. Since parsing is naturally read-only, the lack of side-effect risk is less concerning than it would be for a mutation tool.

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, focused sentence that contains no filler and directly conveys input and output types. It is well structured and easily readable by an agent.

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?

For a simple two-parameter tool, the description names the input format and output representation clearly. But it does not fully specify the format parameter's behavior, especially 'auto', and it leaves ambiguity around malformed input handling. Since there is no output schema or annotations, another sentence of guidance would make it 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 description confirms that 'content' can hold Excalidraw JSON or Markdown and that the result is a graph, which partially explains the parameter's purpose. However, it does not explain the semantics of 'format', especially the 'auto' enum value, nor what happens when 'format' is omitted. With 50% schema description coverage, the description only partially compensates for what the schema lacks.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a clear verb and resource: it 'Parses Excalidraw JSON or Markdown diagrams into a validated NetworkX DAG.' This makes the tool's specific conversion purpose explicit. However, it does not explicitly distinguish itself from the sibling tool 'decompose_diagram', so full sibling differentiation is missing.

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

Usage Guidelines2/5

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

The description gives no guidance about when to use this tool versus 'decompose_diagram' or any other alternative. It describes what the parser does but leaves the agent to infer the appropriate selection context.

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
  • A
    license
    Not graded
    quality
    B
    maintenance
    Browse IndustryLens's published competitive-intelligence reports and head-to-head competitor comparisons from any AI agent — real, source-backed data.
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    A Voice of Customer pipeline that cross-references feedback from calls, reviews, chat, and other sources to surface only corroborated patterns, routing actionable insights with exact customer quotes to the right people.
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources