Skip to main content
Glama

Server Details

Pay-per-call MCP tools via x402 USDC: ZAR prices, data extraction, Python sandbox, SA flights.

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

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose with no overlap: agent_example for LLM inference, tool_compute_sandbox for Python execution, tool_data_transformer for JSON extraction, tool_example for text utilities, tool_sa_airport_oracle for flight status, and tool_zar_prices for crypto prices. The descriptions reinforce unique domains and use cases, making misselection unlikely.

Naming Consistency2/5

Naming is inconsistent with mixed patterns: agent_example uses snake_case, tool_compute_sandbox and tool_data_transformer use snake_case with 'tool_' prefix, tool_example is snake_case but simpler, tool_sa_airport_oracle uses a hyphenated prefix, and tool_zar_prices uses a hyphenated suffix. There is no uniform verb_noun or style convention across the set.

Tool Count4/5

With 6 tools, the count is reasonable for a utility server, though it feels slightly thin for a 'factory' concept. Each tool serves a distinct function, but the scope is broad (AI, computation, data, text, flights, crypto), suggesting more tools could better cover these domains. It's not excessive or minimal, but could be more focused.

Completeness3/5

The server lacks clear domain coverage, as tools span unrelated areas (AI, programming, data parsing, text, flights, crypto), making completeness hard to assess. Within each tool's niche, operations are basic (e.g., single-turn inference, read-only flight data), but there are gaps like no update/delete functions or deeper integrations. It feels like a collection of utilities rather than a complete surface for any one domain.

Available Tools

6 tools
agent_exampleAInspect

POST /agents/agent_example/run — Single-turn Claude Sonnet inference endpoint. Input: {question: string, max_tokens: integer (default 1024)}. Output: {success, answer, usage: {input_tokens, output_tokens}, error}. No tool use or agentic loop — direct model call. Use for QA, summarisation, or classification tasks. Cost: $0.0100 USDC per call.

ParametersJSON Schema
NameRequiredDescriptionDefault
questionYesThe question or task for the agent to reason about
max_tokensNoMaximum tokens for the response (default: 1024)
Behavior4/5

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

With no annotations provided, the description carries the full burden and delivers substantial behavioral detail: single-turn nature, direct model call, cost per call, and output structure. It also describes the response fields (success, answer, usage, error). It does not mention authentication, rate limits, or failure handling, but these are less critical for a simple inference endpoint.

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 leads with the HTTP method and endpoint, then covers input, output, behavioral constraints, use cases, and cost. Every phrase provides useful information with no redundancy or filler.

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 only two parameters, no annotations, and no output schema, the description is comprehensive. It includes the output shape, usage context, and cost. It omits operational details like authentication or rate limits, but these are not essential for the core functionality. Overall, it is sufficient for an agent to understand its capabilities and limitations.

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 schema already fully documents both parameters (question and max_tokens) with 100% coverage, so the baseline is 3. The description repeats the input format and default but does not add deeper semantics about parameter constraints, such as length limits for question or how max_tokens affects cost. It mentions cost per call but not per token, so it adds minimal value beyond 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 clearly states this is a single-turn Claude Sonnet inference endpoint and lists specific use cases (QA, summarisation, classification). It distinguishes itself from agentic multi-step tools by explicitly noting 'No tool use or agentic loop — direct model call,' making its purpose unambiguous and differentiating it from siblings that may support agentic behavior.

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 provides clear usage context: 'Use for QA, summarisation, or classification tasks.' It also implicitly excludes complex agentic scenarios by stating 'No tool use or agentic loop,' which serves as a when-not. However, it does not explicitly name alternative sibling tools, so it falls just short of a 5.

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

tool_compute_sandboxAInspect

POST /tools/tool_compute_sandbox/run — Executes Python 3.12 code in an isolated subprocess with a 5-second hard timeout. Input: {python_code: string, input_data: any (optional, bound as variable 'input_data')}. Output: {success, result, stdout (capped 50KB), execution_time_ms, error_type}. Return value: assign to 'result' variable. Pre-loaded: math, json, re, statistics, itertools, functools, collections, decimal, datetime, random, hashlib, base64. Blocked: import, open(), eval(), exec(), os, sys, network, class definitions, dunder attributes. error_type values: syntax_error | security_error | runtime_error | timeout_error. Cost: $0.1500 USDC per call.

ParametersJSON Schema
NameRequiredDescriptionDefault
input_dataNoJSON-serializable value (dict, list, str, number, bool, or null) passed as the variable 'input_data' inside the sandbox. Omit or pass null if the code has no external input.
python_codeYesPython 3.12 source code to execute. No import statements. Set 'result = <value>' to return a value. Pre-loaded modules are in scope: math, json, re, statistics, itertools, functools, collections, decimal, datetime, random, string, textwrap, hashlib, base64, struct, copy, pprint.
Behavior5/5

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

With no annotations provided, the description carries the full burden and excels: it discloses the isolated subprocess, hard timeout, curated pre-loaded modules, blocked operations (import, open, eval, exec, os, sys, network, classes, dunders), stdout cap, error_type enum values, and per-call cost. This is exceptionally transparent about behavior and safety boundaries.

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 well-structured with labeled sections (Input, Output, Pre-loaded, Blocked, error_type, Cost). Every sentence carries critical information, and the format makes it easy to scan. It packs a lot of details without redundancy.

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

Completeness5/5

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

For a code-execution tool with no output schema, the description is remarkably complete. It covers input format, output shape, error types, timeout, resource limits, allowed modules, forbidden operations, and cost. An agent has all the information needed to decide whether to use the tool and how to interpret its results.

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 100%, so the baseline is 3. The description adds meaningful semantics beyond the schema by explaining that input_data is bound to a variable named 'input_data', that the return value must be assigned to 'result', and by enumerating the output fields (success, result, stdout, execution_time_ms, error_type). This extra context helps the agent use the parameters correctly.

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 opens with a specific verb ('Executes') and a precise resource ('Python 3.12 code in an isolated subprocess'), plus a 5-second timeout. This clearly differentiates the tool from siblings like tool_data_transformer and tool_zar_prices, which are not code-execution tools.

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 usage by detailing execution constraints, blocked operations, and cost, but it never explicitly states when to use this tool versus alternatives. There is no mention of 'use this when you need to run arbitrary Python' or any exclusions. The purpose is clear, but usage guidance is only implicitly conveyed.

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

tool_data_transformerAInspect

POST /tools/tool_data_transformer/run — Extracts structured JSON from raw text using a caller-supplied JSON Schema. Input: {raw_text: string, target_json_schema: object (JSON Schema draft-07)}. Output: {success, extracted_data, extraction_method, validation_passed, error}. extraction_method is one of: 'direct_parse', 'embedded_json', 'regex_extraction'. No LLM involved — pure parsing pipeline. Type coercion applied for integer/number/boolean fields. Works best with flat schemas; deeply nested structures extract less reliably via key-value pass. Cost: $0.0500 USDC per call.

ParametersJSON Schema
NameRequiredDescriptionDefault
raw_textYesUnstructured or semi-structured text to extract data from. Examples: API response body, email content, log lines, form submissions, scraped web pages, or any text that contains the values you need.
target_json_schemaYesA JSON Schema object describing the expected output structure. Define 'properties' with a 'type' for each field you want extracted, and list required fields under 'required'. Example: {"type": "object", "properties": {"name": {"type": "string"}, "age": {"type": "integer"}}, "required": ["name", "age"]}
Behavior5/5

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

With no annotations, the description carries full responsibility and excels: it discloses that no LLM is involved, lists the extraction_method enum, mentions type coercion, describes the output structure, and even states the cost per call. Limitations about nested schemas add critical expectations. This is far beyond typical descriptions.

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 provides distinct value: endpoint, input, output, methods, behavior, limitations, and cost. It is structured logically with clear separators and avoids fluff or repetition of schema content.

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

Completeness5/5

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

Despite lacking annotations and an output schema, the description compensates by fully specifying the output fields (success, extracted_data, extraction_method, validation_passed, error) and covering operational details (type coercion, flat-schema preference, cost). This is a complete picture for an agent to invoke the tool correctly.

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 100% with detailed descriptions, so the baseline is 3. The description adds extra value by specifying that target_json_schema follows JSON Schema draft-07 and by framing the parameters as caller-supplied, which clarifies their role in the pipeline. This nuance earns a 4.

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 ('extracts') and resource ('structured JSON from raw text') and clearly distinguishes the tool's function from the sibling tools, none of which suggest data extraction. The inclusion of the endpoint and input/output structure reinforces the 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 context on when to use the tool (for extracting structured data without an LLM) and notes a limitation ('Works best with flat schemas; deeply nested structures extract less reliably'), serving as a when-not. However, it does not explicitly name alternative tools or provide a clear 'use this instead of X' directive, so it falls short of a 5.

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

tool_exampleAInspect

POST /tools/tool_example/run — Stateless text utility for testing x402 payment flows. Input: {text: string}. Output: {original, uppercase, word_count, char_count}. Cost: $0.0010 USDC per call.

ParametersJSON Schema
NameRequiredDescriptionDefault
textYesInput text to process
Behavior4/5

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

With no annotations, the description carries the full burden. It discloses statelessness, the exact output structure (original, uppercase, word_count, char_count), and cost per call. It does not mention authentication or error handling, but for a simple utility this is reasonably 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?

The description is a single sentence that includes the HTTP method, purpose, input, output, and cost. It is efficient, front-loaded, and every element serves a purpose without redundancy.

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

Completeness5/5

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

For a stateless utility with one parameter, the description covers all essential aspects: purpose, input, output, and cost. The schema fully documents the parameter, and the output fields are listed. This is complete for an agent to select and invoke the tool correctly.

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 description coverage is 100%, so the baseline is 3. The description adds the output format and cost, but the 'text' parameter itself is fully documented in the schema. No additional parameter semantics are needed.

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 identifies the tool as a stateless text utility for testing x402 payment flows, with explicit input and output formats. This distinguishes it from siblings like agent_example or tool_compute_sandbox, which likely 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.

Usage Guidelines4/5

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

The description states the tool is 'for testing x402 payment flows', providing a clear context of when to use it. It does not explicitly mention alternatives or exclusions, but the purpose is specific enough to guide tool selection.

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

tool_sa_airport_oracleAInspect

POST /tools/sa-airport-oracle/run — Returns live flight status from ACSA (airports.co.za). Input: {airport_code: 'JNB'|'CPT'|'DUR', flight_number: string, request_type: 'arrival'|'departure'}. Output: {success, live_status, scheduled_time, estimated_time, actual_time, gate, carousel, terminal, flight_number, airport_code, request_type, error}. Coverage: JNB (O.R. Tambo), CPT (Cape Town Int'l), DUR (King Shaka). Data window: flights within 48 hours. Call GET /tools/sa-airport-oracle/health (free) first — if structure_valid=false, do not proceed. error_type values: 'stale_data' (do not retry), 'not found' (retry after 10-15 min), network error (retry once). flight_number is case-insensitive and normalised to uppercase internally. Read-only — no booking/ticketing. Cost: $0.1200 USDC per call.

ParametersJSON Schema
NameRequiredDescriptionDefault
airport_codeYesIATA airport code. JNB=O.R. Tambo (Johannesburg), CPT=Cape Town, DUR=King Shaka (Durban).
request_typeYesSearch the arrivals board or departures board.
flight_numberYesIATA flight number, e.g. 'SA322'. Case-insensitive.
Behavior5/5

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

With no annotations provided, the description carries full behavioral disclosure. It reveals read-only nature, cost per call, error_type values with retry guidance, flight_number normalization, and a precondition health check. This level of transparency is exceptional.

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 adds value. It is front-loaded with the core purpose and then systematically covers input, output, coverage, data window, health check, error handling, and cost. No filler or repetition.

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

Completeness5/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, the description compensates by listing all output fields and error types. It also covers prerequisites, restrictions, retry logic, and pricing. For a tool of this complexity, the description is fully self-contained.

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 coverage is 100%, the description adds meaningful semantics: it shows the exact input structure, explains flight_number case-insensitivity and normalization, lists output fields, and details error_type meanings that affect retry behavior. This far exceeds the schema's own descriptions.

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 starts with a specific verb and resource: 'Returns live flight status from ACSA (airports.co.za)'. It clearly distinguishes itself from sibling tools by naming the coverage (JNB, CPT, DUR) and the data source, making the tool's unique purpose unmistakable.

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

Usage Guidelines5/5

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

Provides explicit when-to-use context: limited to three South African airports, 48-hour data window, and read-only (no booking/ticketing). It also instructs to call the /health endpoint first and not proceed if structure_valid=false. This goes beyond mere context to actionable guidance.

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

tool_zar_pricesAInspect

POST /tools/zar-prices/run — Returns live bid/ask/last prices for crypto/ZAR pairs. Input: {pair: 'BTC/ZAR'|'ETH/ZAR'|'SOL/ZAR'|'USDC/ZAR'|'all'}. Output: array of {exchange, pair, price, bid, ask, timestamp} objects. Sources: VALR (all 4 pairs), Luno (BTC/ZAR + ETH/ZAR only). SOL/ZAR and USDC/ZAR are VALR-only. Fetches all exchanges concurrently. Timestamps are ISO-8601 UTC. Cost: $0.0050 USDC per call.

ParametersJSON Schema
NameRequiredDescriptionDefault
pairNoTrading pair to fetch. Use 'all' to fetch every supported pair concurrently.all
Behavior4/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It adds important context: sources (VALR, Luno), per-exchange pair coverage, concurrent fetching, ISO-8601 UTC timestamps, and cost per call. However, it omits potential failure modes, rate limits, and authentication requirements, which would make it fully 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?

The description is compact yet information-dense, covering endpoint, input, output, sources, concurrency, timestamp format, and cost. Every sentence provides value without redundancy. It is well-structured and front-loaded with the primary purpose.

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

Completeness5/5

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

With no output schema, the description adequately explains the return format (array of objects with exchange, pair, price, bid, ask, timestamp). It also covers source availability, concurrency, and cost. The context is sufficiently complete for an agent to invoke and interpret results correctly.

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 already covers the parameter 100% with enum values, default, and description. The tool description adds meaningful semantic enrichment by explaining which exchanges support each pair (e.g., 'SOL/ZAR and USDC/ZAR are VALR-only') and clarifies 'all' fetches concurrently. This goes beyond 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 clearly states the tool's function: 'Returns live bid/ask/last prices for crypto/ZAR pairs.' It identifies the specific resource (crypto/ZAR pairs) and the action (fetch prices), and distinguishes it from sibling tools which are unrelated (compute, data transformer, airport oracle). The endpoint is also specified.

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 on when to use the tool (to get live prices for specified pairs) and what inputs to provide. While it doesn't explicitly mention alternatives or when-not-to-use, the scope is well-defined and no competing sibling tools exist, making the usage context unambiguous.

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
    -
    quality
    C
    maintenance
    Pay-per-call MCP server for WebberSites x402 Data API, offering 45 tools for AI agents: web scraping, document extraction, SEO audits, linting, crypto data, and more, with payment via USDC on Base.
    52
    MIT
  • A
    license
    -
    quality
    C
    maintenance
    250+ AI-powered MCP tools: research, write, code, translate, scrape, sentiment, vision, RAG, agent memory, marketplace, trading signals, and more. 15 models across 7 providers. Pay-per-use via API key or x402 USDC micropayments.
    2
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources