Skip to main content
Glama

Server Details

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

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

4 tools
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.

TDQS

A4.5/5.0
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"]}

TDQS

A4.7/5.0
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_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.

TDQS

A5/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 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

TDQS

A4.5/5.0
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.

Tool Schema Changelog

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

  1. 2 tool updates
    • Removedagent_example
    • Removedtool_example
  2. 6 tool updates
    • First observedagent_example
    • First observedtool_compute_sandbox
    • First observedtool_data_transformer
    • First observedtool_example
    • First observedtool_sa_airport_oracle
    • First observedtool_zar_prices

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
    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.
    63
    MIT
  • A
    license
    Not graded
    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
  • A
    license
    Not graded
    quality
    C
    maintenance
    Marketplace MCP for paid HTTP APIs. Pay per call in USDC on Base via the open x402 standard — non-custodial. 13 tools for discovery, buying, and publishing APIs.
    63
    2
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.4/5.0
Disambiguation5/5

Each tool covers a completely different domain: Python execution, raw-text JSON extraction, South African airport flights, and ZAR crypto prices. There is no overlap in purpose, input shape, or use case, so agents should not confuse them.

Naming Consistency4/5

All tools share a 'tool_' prefix and lower_snake_case formatting, giving the set a recognizable pattern. The suffix style is mostly consistent, though 'compute_sandbox' and 'data_transformer' are generic capability nouns while 'sa_airport_oracle' and 'zar_prices' are more domain-branded, and none uses a verb-action pattern.

Tool Count4/5

Four tools is a manageable, non-bloated count for a utility/vending server. It is slightly lean given the broad 'Agent Vending Factory' name, but each tool is substantial and earns its place.

Completeness3/5

Each tool covers its own narrow operation well, but the set lacks a unifying domain or shared workflow; the compute, transformer, flight, and pricing endpoints are isolated one-shots. There is also no meta-tool for discovering, chaining, or managing the vended capabilities, so the surface feels like a grab-bag rather than a complete product.

Resources