Skip to main content
Glama

Server Details

Machine-service catalogue, payment hand-off and free market discovery for autonomous AI agents.

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

5 tools
get_serviceAInspect

Get the machine-readable definition of one live Agent Shop service by catalogue slug.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYes

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.2/5.0
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 burden. It clearly signals a read operation and a 'machine-readable' return, but it does not disclose error behavior, authentication needs, or whether the slug must exactly match a live catalogue entry. This is adequate for a simple getter but not rich.

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?

One sentence with no filler. The core action and resource are front-loaded, and every word adds meaning.

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?

With a single parameter and an output schema present, the description covers the essential task. It is slightly incomplete around alternatives and error handling, but for a low-complexity read operation the provided context is nearly sufficient.

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 schema has a single required parameter with no description (0% coverage), so the description must compensate. The phrase 'by catalogue slug' gives the parameter its selection semantics, though it does not provide slug format or lookup examples.

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 names a specific verb ('Get'), a specific resource ('machine-readable definition of one live Agent Shop service'), and the selection key ('by catalogue slug'). This clearly distinguishes the tool from siblings like invoke_service and list_services.

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 the main use case: when you have a catalogue slug and need the service definition. It does not explicitly name the alternatives or state when not to use it, so it stops short of a 5, but the context is clear enough for routing.

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

invoke_serviceAInspect

Prepare a paid invocation of one live Agent Shop service. Returns the exact x402 HTTP request and price; it does not execute the service or bypass payment.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYes
inputsYes

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A3.8/5.0
Behavior4/5

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

With no annotations, the description carries the behavioral burden. It discloses that the tool returns 'the exact x402 HTTP request and price' and explicitly states it does not execute or bypass payment, which clarifies side effects. It does not address authentication, payment timing, or request expiration, leaving some gaps.

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?

Two brief, front-loaded sentences deliver the core purpose and key clarifications with no filler. Every sentence earns its place.

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 relatively simple and has an output schema, and the description covers the core purpose and non-execution behavior. However, with 0% parameter coverage and no annotations, practical details such as how to obtain the slug, how the returned request should be used, and whether payment is captured remain unstated.

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?

Schema description coverage is 0%, and the description does not explain that 'slug' identifies the service or that 'inputs' contains the service arguments. The description only weakly implies a service context, so it does not compensate for the schema gap.

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 ('Prepare') and resource ('paid invocation of one live Agent Shop service'), and clarifies that it does not execute the service. This makes the tool's purpose distinct from execution-oriented or read-only siblings.

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?

It provides context that the tool prepares rather than executes and does not bypass payment, but it never names alternatives like get_service, list_services, or market_service. The agent must infer when to use this tool versus its siblings.

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

list_servicesBInspect

List services currently available from the Atinamos Agent Shop.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

B3.3/5.0
Behavior2/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. 'List' implies a read-only operation and 'currently available' adds temporal context, but there is no mention of output format, pagination, filtering, freshness guarantees, or whether results reflect live availability.

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 no filler. It immediately conveys the action and scope, making it optimally concise for a zero-parameter list tool.

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, parameterless listing operation with an output schema, the description is largely sufficient. The main gap is lack of differentiation from sibling tools, but an agent can safely invoke this tool without additional parameter or return-value guidance.

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 tool has zero parameters, so parameter-level documentation is unnecessary. The empty schema and schema description coverage of 100% make this a non-issue, and the baseline of 4 applies.

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 clearly states a specific verb ('List') and resource ('services currently available from the Atinamos Agent Shop'). It is distinguishable from get_service and invoke_service by the explicit listing scope, though it does not explicitly contrast with those sibling tools.

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 implies this is for discovering available services, but provides no guidance on when to choose this over get_service, invoke_service, market_search, or market_service. No exclusions or routing hints are given.

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

market_serviceBInspect

Get one observed machine service from the live Atinamos market registry by its canonical Atinamos service ID.

ParametersJSON Schema
NameRequiredDescriptionDefault
service_idYes

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

B3.3/5.0
Behavior2/5

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

With no annotations provided, the description must carry the full burden of behavioral disclosure. It indicates a read operation ('Get') but does not explicitly state that it is non-destructive, nor does it mention potential failure modes (e.g., ID not found), rate limits, or whether the data is cached. The phrase 'live registry' hints at real-time data but lacks detail. The absence of any side-effect disclosure makes this insufficient.

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, well-structured sentence that front-loads the action and resource, then specifies the lookup key. Every word contributes meaning, with no fluff or redundancy. It is appropriately concise for a simple retrieval tool.

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 get-by-ID tool with an output schema already defined, the description covers the essential information: what it retrieves and by what identifier. It does not explain the output (handled by schema) or list edge cases, but given the simplicity and the presence of output schema, it is largely complete. A minor gap is the lack of usage context, but that falls under usage guidelines.

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 schema only defines 'service_id' as an integer with no description. The description compensates by clarifying that this is the 'canonical Atinamos service ID', which provides essential context about the parameter's origin and format. This goes beyond the bare schema and helps the agent understand what value to supply, though it could add more detail (e.g., whether the ID is global or scoped).

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 clearly states the action ('Get'), the resource ('one observed machine service'), the source ('live Atinamas market registry'), and the lookup key ('canonical Atinamos service ID'). It is specific and unambiguous. However, it does not explicitly differentiate from the sibling tool 'get_service', which may have a similar purpose, so it loses the top score.

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 provides no guidance on when to use this tool versus alternatives like 'list_services', 'market_search', or 'invoke_service'. It does not mention typical scenarios (e.g., when you already have an ID) or when to prefer a different tool. This leaves the agent to infer usage, which is a notable gap.

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. 5 tool updates
    • First observedget_service
    • First observedinvoke_service
    • First observedlist_services
    • First observedmarket_search
    • First observedmarket_service

Frequently Asked Questions

Discussions

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

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    An agent-to-agent marketplace where AI agents discover, hire, and pay each other in USDC on Base. Agents list services, post jobs, submit proposals, and invoke each other's capabilities — all through API, MCP, or A2A protocol.
    MIT
  • F
    license
    Not graded
    quality
    D
    maintenance
    An agent-native marketplace API where any agent can publish allocatable resources, search for what they need, negotiate structured offers, and exchange contact details after mutual acceptance. The protocol is flexible — it works for GPU hours traded between agents, physical courier services, time-bounded API keys, dataset access, or resource types that don't exist yet.
    1
    -
  • A
    license
    A
    quality
    D
    maintenance
    Enables AI agents to participate in a marketplace for buying, selling, and trading services with atomic escrow and cryptographic verification. It provides 27 tools for discovery, order book management, and automated service delivery with zero gas fees.
    32
    43
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.6/5.0
Disambiguation4/5

Each tool addresses a distinct action: shop services, market observations, and paid invocation. get_service and market_service could be confused by name alone, but their descriptions clearly separate the live shop catalogue from the observed market registry.

Naming Consistency4/5

Most tools follow a clear get_/invoke_/list_ pattern, and market_* is used consistently for registry tools. Minor inconsistency: list_services uses plural while the getter tools use singular, and market_search is verb-first rather than object-first.

Tool Count5/5

Five tools is a well-scoped set for an agent shop: listing, retrieving, invoking shop services, plus two market observation tools. Each tool earns its place without redundancy or bloat.

Completeness4/5

The core shop workflow is covered—discover, inspect, and prepare paid invocation—alongside market discovery and retrieval. Actual payment settlement and execution are intentionally out of scope, so there are no major dead ends for the stated purpose.

Resources