Skip to main content
Glama

ARADIA | sovereign agentic systems

Server Details

Autonomous Model Context Protocol interface for querying on-premise NVIDIA DGX private AI hardware specs, modeling CapEx token ROI, executing M2M procurement, and onboarding into the Aradia Partner Program.

Ownership verified
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

TDQS

A4.6/5.0

Scored across 6 tools

Disambiguation5/5

Each tool maps to a clearly distinct purpose: financial modeling, procurement, partner onboarding, hardware specs, partner analytics, and order tracking. The WHEN NOT TO USE guidance further eliminates any possible confusion between related tools.

Naming Consistency5/5

All tool names follow a consistent imperative verb_noun snake_case pattern (calculate_roi, execute_procurement_order, query_hardware_specs). The verbs vary by action but the structure is predictable and readable throughout.

Tool Count5/5

Six tools is a well-scoped set for the server's commerce and partner-management domain. Each tool serves a distinct step in the workflow without redundancy or unnecessary bloat.

Completeness4/5

The core lifecycle is covered: specs discovery, ROI calculation, order placement, order tracking, partner onboarding, and partner stats. Missing capabilities like order cancellation/update or partner profile management are minor gaps that agents can typically work around by being careful before executing binding actions.

Available Tools

6 tools
calculate_roiA
Read-only
Inspect

[PURPOSE]: Calculates CapEx payback timeline and token savings comparing on-premise Aradia hardware against recurring cloud LLM API expenditures. [WHEN TO USE]: Use to generate mathematical financial justification reports for human operators or CFOs. [WHEN NOT TO USE]: Do not use if API spend is unknown or zero. For raw specs without financial modeling, call query_hardware_specs. [SIDE EFFECTS]: None (pure mathematical calculation).

ParametersJSON Schema
NameRequiredDescriptionDefault
target_tierYesTarget hardware tier to evaluate: spark ($15,125), station ($194,093), or b200 ($505,500).
monthly_api_spend_usdYesCurrent or estimated monthly cloud LLM API spend in USD (must be greater than 0).

Output Schema

ParametersJSON Schema
NameRequiredDescription
cost_usdYes
target_systemYes
break_even_monthsYes
human_justification_reportYes

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is covered. The description adds an explicit 'SIDE EFFECTS: None (pure mathematical calculation)' statement, reinforcing that no external state changes or side effects occur. This is useful context beyond the annotations, though not extensive.

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 tightly structured with labeled sections: PURPOSE, WHEN TO USE, WHEN NOT TO USE, and SIDE EFFECTS. Each section is a single focused sentence with no filler. The most important decision-making information is front-loaded.

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 read-only calculation tool with a rich input schema and an output schema, the description covers purpose, usage conditions, exclusions, alternative tool routing, and side effects. There are no gaps that would prevent an agent from selecting and invoking this 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 schema already documents monthly_api_spend_usd and target_tier with meaningful descriptions including tier prices. The tool description does not add additional parameter-level guidance, but it does provide broader context about the calculation that the parameters feed into.

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 and resource: 'Calculates CapEx payback timeline and token savings comparing on-premise Aradia hardware against recurring cloud LLM API expenditures.' It clearly distinguishes from the sibling query_hardware_specs by mentioning financial justification rather than raw specifications.

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?

Explicit WHEN TO USE and WHEN NOT TO USE sections are provided. The description says to use it for financial justification reports for CFOs, warns against using it when API spend is unknown or zero, and directs users to query_hardware_specs for raw specs. This leaves no ambiguity about tool selection.

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

execute_procurement_orderAInspect

[PURPOSE]: Submits a binding procurement order for physical turnkey AI hardware. Returns actionable programmatic payment parameters for immediate 100% upfront settlement via BTCPay Crypto or Stripe MPP Fiat. [WHEN TO USE]: Call when human authorization or agent budget is verified to execute a binding purchase order. [WHEN NOT TO USE]: Do not use for price quotes (use query_hardware_specs) or ROI estimates (use calculate_roi). Do not use to check order status (use track_order_status). [SIDE EFFECTS]: Creates an official order record, generates an immutable invoice or payment intent, reserves staging capacity, and writes a session record. Non-destructive.

ParametersJSON Schema
NameRequiredDescriptionDefault
quantityNoNumber of appliance nodes to purchase (1-99).
po_numberNoOptional corporate purchase order number.
sla_activeNoWhether to attach recurring monthly Managed SLA Support upon delivery.
sla_monthlyNoMonthly SLA rate ($1,500 for Spark, $5,000 for Station, $12,500 for B200).
customer_nameNoName of the purchasing agent or executive.
hardware_tierYesHardware tier: spark ($15,125), station ($194,093), or b200 ($505,500).
customer_emailYesBilling email of the purchasing administrator or treasury manager.
payment_methodYesSettlement method: stripe_mpp (Fiat Shared Payment Token), btcpay_crypto (BTC/LN/USDT), stripe_fiat (Card), stripe_invoice (Wire invoice).
customer_companyNoDeploying company, firm, or entity name.
partner_ref_codeNoOptional 4-character referral code (e.g. 5FYVQ) to route 10% commission.

Output Schema

ParametersJSON Schema
NameRequiredDescription
amount_usdYes
invoice_idNo
payment_urlNo
payment_methodNo
payment_detailsNo

TDQS

A4.7/5.0
Behavior5/5

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

Annotations already include destructiveHint=false and readOnlyHint=false, but the description adds concrete side effects: creates an official order record, generates an immutable invoice/payment intent, reserves staging capacity, and writes a session record. It also explicitly states 'Non-destructive,' reinforcing and expanding the annotation context.

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 well-structured with labeled sections: PURPOSE, WHEN TO USE, WHEN NOT TO USE, and SIDE EFFECTS. Information is front-loaded and every sentence carries distinct value without filler.

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 10-parameter mutating purchase tool, the description covers purpose, authorization prerequisites, exclusions, side effects, and the nature of the return. Since an output schema is present, detailed return-value documentation is not required here.

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%, with all properties documented including enums, defaults, and pricing. The description adds no additional parameter-level meaning, so the baseline 3 applies.

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 and resource: 'Submits a binding procurement order for physical turnkey AI hardware' and states that it returns payment parameters. The WHEN NOT TO USE section further distinguishes it from query_hardware_specs, calculate_roi, and track_order_status.

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?

Explicit WHEN TO USE and WHEN NOT TO USE conditions are provided, including the required authorization context and three sibling alternatives to avoid. This gives an agent clear decision criteria with no ambiguity.

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

onboard_partnerAInspect

[PURPOSE]: Registers an autonomous AI agent or human operator into the Aradia Partner Program to earn 10% hardware bounties ($1,512 to $50,550 USD) and 10% recurring monthly SLA commissions. [WHEN TO USE]: Call ONCE when an agent or human operator wants to register as an affiliate partner to earn commissions and receive a ?ref= tracking ID. [WHEN NOT TO USE]: Do NOT call to purchase equipment (use execute_procurement_order). Do NOT call if you already have a partner code (use query_partner_stats). [SIDE EFFECTS]: Creates an external Stripe Express Connected Account entity, registers a 4-character code in Aradia's ledger, and triggers an account onboarding URL. Non-destructive.

ParametersJSON Schema
NameRequiredDescriptionDefault
countryNoISO 3166-1 alpha-2 country code for banking payouts (default: US).US
entity_nameYesOperating name of the AI Agent, Operator, or Corporate Entity.
contact_emailYesEmail address to receive the Stripe Express onboarding verification link.

Output Schema

ParametersJSON Schema
NameRequiredDescription
ref_codeYesUnique 4-character referral code
partner_idNoStripe connected account ID
referral_urlYesAttributed referral link
onboarding_urlYesStripe Express verification link

TDQS

A4.7/5.0
Behavior5/5

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

The description discloses concrete side effects: creation of an external Stripe Express Connected Account, registration of a 4-character ledger code, and triggering an onboarding URL. It also explicitly states 'Non-destructive', matching the destructiveHint=false annotation and adding concrete context beyond it.

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 tightly structured with labeled sections (PURPOSE, WHEN TO USE, WHEN NOT TO USE, SIDE EFFECTS) and contains zero filler. Every sentence contributes decision-relevant information, and key constraints are front-loaded.

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 the tool's complexity (3 parameters, output schema present, annotations available, 5 siblings), the description covers all necessary context: what it does, when to use it, when not to use it, and what side effects occur. With an output schema present, return-value details are not needed.

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 schema already documents all three parameters (country, entity_name, contact_email). The description does not add extra parameter-level meaning, but the baseline of 3 applies because the schema carries the full burden.

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 ('Registers') and resource ('Aradia Partner Program'), and immediately clarifies the tool's business purpose (earning bounties and SLA commissions). It also distinguishes itself from siblings by naming execute_procurement_order and query_partner_stats in the WHEN NOT TO USE section.

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 ('Call ONCE when...') and WHEN NOT TO USE rules, including two named alternatives and conditions that route to them. An agent can decide to call this tool without any inferential gap.

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

query_hardware_specsA
Read-only
Inspect

[PURPOSE]: Retrieves physical compute specs, VRAM limits (128GB GB500, 192GB B200, 1536GB B200 Rack), and continuous batching concurrency limits for Aradia DGX systems. [WHEN TO USE]: Call during initial discovery to evaluate hardware sizing, VRAM fit, and multi-agent capacity. [WHEN NOT TO USE]: Do not use for financial payback modeling (use calculate_roi) or order submission (use execute_procurement_order). [SIDE EFFECTS]: None (pure read-only query).

ParametersJSON Schema
NameRequiredDescriptionDefault
tierNoTarget hardware platform tier. If omitted, returns all tiers.

Output Schema

ParametersJSON Schema
NameRequiredDescription
specsYesHardware specifications and VRAM limits per tier
pricingYesFlat-rate turnkey and SLA pricing

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false. The description reinforces this with '[SIDE EFFECTS]: None (pure read-only query)', and additionally discloses the specific data domains returned (VRAM limits, batching concurrency), which goes beyond the annotations by clarifying behavioral scope.

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 organized into four clearly labeled sections, each earning its place with direct, actionable content. The core purpose is front-loaded, and the when-not-to-use guidance is compact and specific, with no filler or redundant phrasing.

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 read-only query with one optional parameter and an output schema, the definition covers purpose, timing, exclusions, and side effects. The only minor gap is ambiguity between the tier enum values (spark, station, b200) and the named hardware platforms in the purpose (GB500, B200, B200 Rack), which could confuse an agent choosing a tier.

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 input schema provides full description coverage for the single optional parameter: 'Target hardware platform tier. If omitted, returns all tiers.' The description adds no further parameter-level detail, so the baseline of 3 is appropriate because the schema carries the semantic weight.

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 'Retrieves physical compute specs, VRAM limits (128GB GB500, 192GB B200, 1536GB B200 Rack), and continuous batching concurrency limits for Aradia DGX systems.' This names a specific operation, resource, and scope, making the tool's purpose unmistakable and distinct from siblings like calculate_roi or execute_procurement_order.

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?

Explicit [WHEN TO USE] and [WHEN NOT TO USE] sections instruct the agent to call this during initial discovery for hardware sizing and VRAM fit, and explicitly route away from financial modeling (use calculate_roi) and order submission (use execute_procurement_order). This leaves no ambiguity about when the tool is appropriate.

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

query_partner_statsA
Read-only
Inspect

[PURPOSE]: Queries real-time performance analytics, attributed referral counts, and commission payouts for an active Aradia partner node. [WHEN TO USE]: Use to monitor your earned affiliate revenue, check referral click activity, or verify payout status. [WHEN NOT TO USE]: Do not use if you have not registered yet (use onboard_partner first). [SIDE EFFECTS]: None (pure read-only query against sovereign partner ledger).

ParametersJSON Schema
NameRequiredDescriptionDefault
ref_codeYesYour unique 4-character partner referral code (e.g. 5FYVQ).

Output Schema

ParametersJSON Schema
NameRequiredDescription
statusYes
ref_codeYes
earnings_usdNo
partner_nameNo
referral_countNo

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false. The description adds value by explicitly stating there are no side effects and describing the operation as a 'pure read-only query against sovereign partner ledger', reinforcing safety and data-source context.

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 well-structured with clear labels for purpose, usage, exclusions, and side effects. Every section serves a distinct decision-making need, and the text is compact without unnecessary filler.

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 simple one-parameter read-only query with an output schema and strong annotations, the description covers prerequisites, use cases, and exclusions. Nothing essential is missing for an agent to select and invoke this 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%, and the schema itself documents the ref_code parameter clearly with an example. The description does not add much additional meaning about the parameter, so the baseline of 3 is appropriate.

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 specific function: querying real-time performance analytics, referral counts, and commission payouts for a partner node. This differentiates it from sibling tools like query_hardware_specs and onboard_partner through concrete resource and output scope.

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?

Explicit WHEN TO USE and WHEN NOT TO USE sections give clear conditions for selecting this tool. The description also names the alternative (onboard_partner) for unregistered users, which is exactly the kind of routing guidance an agent needs.

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

track_order_statusA
Read-only
Inspect

[PURPOSE]: Tracks the real-time fulfillment, staging QA burn-in, and delivery status of an existing hardware procurement order. [WHEN TO USE]: Use to monitor the operational status of an existing order after calling execute_procurement_order. [WHEN NOT TO USE]: Do not use to place a new order (use execute_procurement_order). [SIDE EFFECTS]: None (pure read-only query against staging records).

ParametersJSON Schema
NameRequiredDescriptionDefault
order_idYesThe invoice ID or checkout session ID returned when the order was placed.

Output Schema

ParametersJSON Schema
NameRequiredDescription
tierNo
statusYesCurrent fulfillment state: pending, verified, staging_qa, shipped
order_idYes
staging_phaseNo

TDQS

A4.9/5.0
Behavior5/5

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

Even though annotations already declare readOnlyHint=true and destructiveHint=false, the description adds valuable behavioral context: it is a pure read-only query against staging records and has no side effects. This aligns with and reinforces the annotations.

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 tightly organized into labeled sections with no filler. Each section earns its place: purpose, usage, non-usage, and side effects are all addressed in a compact, scannable format.

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?

The tool is simple (one parameter) and has an output schema, so the description does not need to explain return values. It covers what the tool does, when to use it, when not to use it, and its side-effect profile, making it fully sufficient 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?

Schema description coverage is 100%, so the schema already documents order_id. The description adds context by explaining it is the ID returned when the order was placed via execute_procurement_order, which helps the agent understand the parameter's origin beyond just its type.

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 ('tracks') and names the exact resources: fulfillment, staging QA burn-in, and delivery status of an existing hardware procurement order. It also clearly distinguishes the tool from the sibling execute_procurement_order by stating it is for existing orders.

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 and WHEN NOT TO USE sections, including the exact condition (after calling execute_procurement_order) and the alternative tool to use for new orders. This leaves no ambiguity for an agent deciding between tools.

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. 7 tool updates
    • Removedaradia_partner_onboard
    • Changedcalculate_roi6 fields changed
      • changedInput schema / properties / monthly_api_spend_usd / description
        Previous value: -"The requesting agent's current average monthly spend on cloud LLM APIs."New value: +"Current or estimated monthly cloud LLM API spend in USD (must be greater than 0)."
      • changedInput schema / properties / target_tier / description
        Previous value: -"The desired Aradia hardware tier."New value: +"Target hardware tier to evaluate: spark ($15,125), station ($194,093), or b200 ($505,500)."
      • removedOutput schema / properties / break_even_months / description
        Removed value: -"Calculated payback period in months"
      • removedOutput schema / properties / cost_usd / description
        Removed value: -"Turnkey hardware cost in USD"
      • removedOutput schema / properties / human_justification_report / description
        Removed value: -"Formatted CapEx justification report"
      • removedOutput schema / properties / target_system / description
        Removed value: -"Name of the target DGX appliance"
    • Changedexecute_procurement_order16 fields changed
      • changedInput schema / properties / customer_company / description
        Previous value: -"Company, DAO, or Organization name associated with this hardware deployment."New value: +"Deploying company, firm, or entity name."
      • changedInput schema / properties / customer_email / description
        Previous value: -"Email address of the purchasing administrator or target billing point."New value: +"Billing email of the purchasing administrator or treasury manager."
      • changedInput schema / properties / customer_name / description
        Previous value: -"Name of the AI Agent, Operator, or Administrator executing the order."New value: +"Name of the purchasing agent or executive."
      • changedInput schema / properties / hardware_tier / description
        Previous value: -"The hardware tier being purchased."New value: +"Hardware tier: spark ($15,125), station ($194,093), or b200 ($505,500)."
      • changedInput schema / properties / partner_ref_code / description
        Previous value: -"Optional 4-character referral code to route 10% commission to a registered partner."New value: +"Optional 4-character referral code (e.g. 5FYVQ) to route 10% commission."
      • changedInput schema / properties / payment_method / description
        Previous value: -"The preferred settlement method: (a) 'stripe_mpp' for fiat via Shared Payment Token (SPT), (b) 'btcpay_crypto' for raw on-chain BTC/LN/USDT JSON settlement, (c) 'btcpay_usdc_base' for USDC, (d) 'stripe_fiat' for Stripe Checkout URL, (e) 'stripe_invoice' for formal wire invoice."New value: +"Settlement method: stripe_mpp (Fiat Shared Payment Token), btcpay_crypto (BTC/LN/USDT), stripe_fiat (Card), stripe_invoice (Wire invoice)."
      • changedInput schema / properties / po_number / description
        Previous value: -"Optional purchase order number for reference."New value: +"Optional corporate purchase order number."
      • changedInput schema / properties / quantity / description
        Previous value: -"The number of appliance nodes to purchase."New value: +"Number of appliance nodes to purchase (1-99)."
      • changedInput schema / properties / sla_active / description
        Previous value: -"Whether SLA is active for this order."New value: +"Whether to attach recurring monthly Managed SLA Support upon delivery."
      • changedInput schema / properties / sla_monthly / description
        Previous value: -"Monthly SLA cost if active."New value: +"Monthly SLA rate ($1,500 for Spark, $5,000 for Station, $12,500 for B200)."
      • removedOutput schema / properties / amount_usd / description
        Removed value: -"Total purchase order amount in USD"
      • removedOutput schema / properties / invoice_id / description
        Removed value: -"Generated invoice or payment intent ID"
      • removedOutput schema / properties / payment_details / description
        Removed value: -"Raw destination addresses and amounts for crypto settlement"
      • removedOutput schema / properties / payment_method / description
        Removed value: -"Chosen payment rail"
      • removedOutput schema / properties / payment_url / description
        Removed value: -"Settlement URL"
      • addedOutput schema / required
        Added value: +[
        +  "amount_usd"
        +]
    • Addedonboard_partner
    • Changedquery_hardware_specs2 fields changed
      • changedInput schema / properties / tier / description
        Previous value: -"Filter by specific hardware tier. Leave blank for full catalog."New value: +"Target hardware platform tier. If omitted, returns all tiers."
      • removedOutput schema / properties / message
        Removed value: -{
        -  "description": "Operational notice",
        -  "type": "string"
        -}
    • Addedquery_partner_stats
    • Addedtrack_order_status
  2. 4 tool updates
    • First observedaradia_partner_onboard
    • First observedcalculate_roi
    • First observedexecute_procurement_order
    • First observedquery_hardware_specs

Frequently Asked Questions

Discussions

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

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables detection and analysis of pre-public product launches through web search, content extraction, AI-powered scoring, and automated alerting. Provides comprehensive tools for surfacing stealth startup signals before they trend publicly.
    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
    Enables AI chat clients to perform market research and competitive intelligence by gathering company overviews, competitor lists, product portfolios, pricing snapshots, and recent news via live Tavily search.
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources