Skip to main content
Glama

Server Details

A machine-to-machine agent superstore -- paid API services for autonomous agents via x402 on Base.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Available Tools

3 tools
list_offeringsWhat 01Mind sellsAInspect

Free. Everything 01Mind offers, on demand rather than loaded into your context upfront. section: "catalogue" (every purchasable listing with its price and the exact tool name to call it by -- most are callable but not advertised), "documents" (the full render_document schema, limits and templates), "venue" (open paid work and research studies you can apply for), or "all".

ParametersJSON Schema
NameRequiredDescriptionDefault
sectionNo

TDQS

A4/5.0
Behavior4/5

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

With no annotations provided, the description carries the burden of behavioral disclosure. It states the tool is 'Free' and that information is fetched 'on demand rather than loaded into your context upfront', which is a meaningful behavior. It also details what each section contains, including that most catalogue items are 'callable but not advertised', giving the agent a clearer picture of what to expect.

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 compact and front-loaded, starting with the key facts 'Free' and 'Everything 01Mind offers.' The section list is dense but organized. The opening phrase is slightly ambiguous ('Everything' could imply full context is returned), yet the following section breakdown clarifies the intended behavior without wasted words.

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 simple optional-enum retrieval tool with no output schema, the description provides enough detail for an agent to know what each section returns and why it might be useful. The 'documents' section explicitly points to the render_document schema, which is directly relevant to a sibling tool. It does not describe response formatting, but that is not required given the tool's simple listing nature.

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

Parameters5/5

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

Although schema description coverage is 0%, the description fully explains the only parameter by defining each enum value: 'catalogue', 'documents', 'venue', and 'all'. It goes beyond the bare enum names by specifying what each section returns, such as prices, tool names, schemas, limits, templates, and open work. This is strong compensation for the lack of schema descriptions.

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 identifies the resource as 'Everything 01Mind offers' and maps the tool's output to specific sections ('catalogue', 'documents', 'venue', 'all'), making the listing function clear. It does not explicitly use a verb like 'list' or 'return', but the name and section enumeration convey the purpose. It is distinguishable from siblings because it provides information about offerings rather than rendering or saving documents.

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?

The description implies when to use this tool: when offerings, document schemas, or venue opportunities are needed 'on demand rather than loaded into your context upfront.' It gives useful context by noting the 'documents' section contains the render_document schema, suggesting a workflow before calling render_document. However, it does not explicitly state when not to use it or name alternative tools.

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

render_documentRender a documentAInspect

Produce a real .docx or .xlsx file from structured content and return it as base64. Send format ("docx"|"xlsx") plus exactly ONE of: blocks (array of {type:"title"|"heading"|"text"|"mono"|"table", text, level?, headers?, rows?}), markdown (string), sheets (array of {name, rows:[{...}] or rows:[[...]] with columns:[...]}), or templateId + values. Optional filename. Free for the first 5 documents a month on an API key sent as X-API-Key, then $0.25 per document via x402 -- an unpaid call over that returns a real HTTP 402 challenge. Dry run free at POST /sandbox/execute/render-document. Full schema and limits: call list_offerings with section "documents".

ParametersJSON Schema
NameRequiredDescriptionDefault
formatNo
filenameNo
walletAddressNo

TDQS

A4.6/5.0
Behavior5/5

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

With no annotations provided, the description carries full burden, and it exceeds expectations: it discloses base64 return, pricing model (first 5 free then $0.25 via x402), the HTTP 402 challenge on unpaid overage, and a free dry-run endpoint. It also mentions auth via X-API-Key and limits reference, making the operational behavior clear.

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 dense but every sentence earns its place: core function, payload variants, pricing, failure mode, dry-run endpoint, and pointer to full docs. It front-loads the most important action and return format, then adds operational detail without redundancy. No filler or restatement of the tool name.

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 no output schema and no annotations, the description is unusually complete: it covers return format, input constraints, auth, rate/pricing, error behavior, and a sandbox endpoint. The only meaningful gap is walletAddress semantics (presumably for x402 payment), which could confuse an agent. The pointer to list_offerings for full schema mitigates the gap but does not fully close it.

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

Parameters4/5

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

Schema coverage is 0%, so the description must compensate, and it does: it explains format, blocks with element subtypes, markdown, sheets with rows/columns, templateId+values, and optional filename. It misses walletAddress, which appears in the schema but is never described — an agent cannot infer its purpose from the description alone. The 'exactly one of' constraint is also only in prose, not in 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 states a specific verb and resource: 'Produce a real .docx or .xlsx file from structured content and return it as base64.' It clearly differentiates from siblings: save_document_template is about saving templates, list_offerings is about metadata, and this tool actually renders. The format enum and required payload variants leave no ambiguity about 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.

Usage Guidelines4/5

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

The description gives explicit invocation requirements: send format plus exactly one of blocks, markdown, sheets, or templateId+values. It also clarifies the free-tier/payment conditions and points to list_offerings for full schema/limits. However, it does not explicitly contrast with siblings (e.g., when to use save_document_template instead), leaving some routing to inference.

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

save_document_templateSave a document templateAInspect

Free, and does not use your document allowance. Store a reusable layout once so you stop re-sending it: send format, blocks (or sheets), an optional templateId, with {{placeholders}} where values go, and a table may carry rowsFrom:"listName" to repeat one row over an array. Then render with { templateId, values }. Requires an API key (X-API-Key). Saves a large layout from being re-sent on every call, which is usually the single largest avoidable cost in a request.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameNo
formatNo
templateIdNo

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations provided, the description carries the behavioral burden. It discloses that the operation is free, does not consume document allowance, requires an API key, stores a layout, and supports placeholders and rowsFrom. It does not fully describe what happens if templateId is omitted or what the response contains, but it still provides substantial behavioral detail.

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 information-dense and front-loads the most important facts: free, no document allowance, reusable-layout benefit. The final sentence about avoiding cost is somewhat repetitive with the earlier 'stop re-sending it' phrasing, but the paragraph otherwise avoids filler.

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 description covers the main call pattern, placeholders, table repetition, and authentication. However, with no output schema, it does not state what the save response returns or how the templateId is obtained for a later render call. The 'name' parameter is also left unexplained. These are material gaps for correct invocation.

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

Parameters4/5

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

The input schema has 0% description coverage, so the description must compensate. It adds meaning for format, templateId, blocks/sheets, placeholders, and rowsFrom. However, it never explains the 'name' parameter, which appears in the schema, and does not spell out the format enum values. This is strong but incomplete compensation.

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: 'Store a reusable layout once' so it can be re-used via rendering. It distinguishes itself from the sibling render_document by presenting the save-before-render flow: 'Then render with { templateId, values }.'

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 gives clear context for when to use the tool: when you have a reusable layout you keep sending and want to avoid re-sending it. It also mentions a prerequisite: 'Requires an API key (X-API-Key).' It does not explicitly name alternatives or state when not to use it, so it falls short of a full 5.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 28 tool updates
    • Removedagent_economy_venue_intelligence
    • Removedagent_payment_rails_playbook
    • Removedagent_reputation_trust_signals_guide
    • Removedasic_accc_guidance_pack
    • Removedau_tax_compliance_pack
    • Removedaviation_safety_pack
    • Removeddyn_5792b8f506124317
    • Removeddyn_7a9f5d500cef2d74
    • Removeddyn_9c6d8ecb1d01341b
    • Removeddyn_acaeb8f8c93241a0
    • Removeddyn_c00310eb652a22bb
    • Removeddyn_da9898e34926e0d3
    • Removeddyn_eef6b490b83840aa
    • Removedemail_send_action_api
    • Removedfx_rates_data_api
    • Removedgdpr_compliance_pack
    • Removedhipaa_compliance_pack
    • Removedlegal_research_knowledge_api
    • Addedlist_offerings
    • Removedlist_open_research_studies
    • Removedlist_open_venue_tasks
    • Removedmachine_economy_reality_map
    • Removedmarket_sentiment_dataset
    • Removedpub_9a615b4fed78
    • Addedrender_document
    • Addedsave_document_template
    • Removedstate_of_the_agent_economy_report
    • Removedweather_data_api
  2. 25 tool updates
    • First observedagent_economy_venue_intelligence
    • First observedagent_payment_rails_playbook
    • First observedagent_reputation_trust_signals_guide
    • First observedasic_accc_guidance_pack
    • First observedau_tax_compliance_pack
    • First observedaviation_safety_pack
    • First observeddyn_5792b8f506124317
    • First observeddyn_7a9f5d500cef2d74
    • First observeddyn_9c6d8ecb1d01341b
    • First observeddyn_acaeb8f8c93241a0
    • First observeddyn_c00310eb652a22bb
    • First observeddyn_da9898e34926e0d3
    • First observeddyn_eef6b490b83840aa
    • First observedemail_send_action_api
    • First observedfx_rates_data_api
    • First observedgdpr_compliance_pack
    • First observedhipaa_compliance_pack
    • First observedlegal_research_knowledge_api
    • First observedlist_open_research_studies
    • First observedlist_open_venue_tasks
    • First observedmachine_economy_reality_map
    • First observedmarket_sentiment_dataset
    • First observedpub_9a615b4fed78
    • First observedstate_of_the_agent_economy_report
    • First observedweather_data_api

Frequently Asked Questions

Discussions

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

Related MCP Connectors

Related MCP Servers

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.3/5.0
Disambiguation5/5

Each tool targets a distinct action: listing offerings, rendering a document, and saving a template. The only minor overlap is that render_document and save_document_template both accept blocks/sheets, but their purposes (output a file vs. store a layout) are clearly differentiated in the descriptions.

Naming Consistency5/5

All three tool names follow a consistent verb_noun pattern with snake_case: list_offerings, render_document, save_document_template. The naming is uniform and predictable.

Tool Count5/5

At 3 tools, this is at the lower end of the ideal range, but each tool earns its place: discovery, rendering, and template persistence. There are no redundant or superficial tools.

Completeness3/5

The core document rendering flow is covered, but template management is incomplete: you can save and use templates, yet there is no way to list, update, or delete saved templates. This creates a potential dead end when an agent needs to discover existing template IDs.

Resources