Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, get in touch and we’ll put it right.

ScalePad

OCI · GHCR.IO/WYRE-TECHNOLOGY/SCALEPAD-MCP:V1.0.5 · SCANNED AUG 22

MCP server for ScalePad — Core, Lifecycle Manager, ControlMap, Backup Radar, and Quoter.

40 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security0
  • Malware scan not yet available for this package.Unverified
  • Known CVEs could not be checked: this artifact ships no SBOM, so there is no dependency list to read. Publishing one would let us assess it.Unverified
  • Install-script risk not yet assessed.Unverified
  • Dependency health could not be checked: this artifact ships no SBOM, so there is no dependency list to read. Publishing one would let us assess it.Unverified
Provenance & Transparency45
Schema Quality & AI Usability79
  • AI-judged instruction clarity (excellent).Pass
  • Tool/resource definitions use about 34827 tokens (~91/item across 381 items; 381 tools + 0 resources), lean.Pass
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management0
  • Stability not yet verified: not enough scan history yet (needs a 30-day window).Unverified
Tool Coverage100
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 100% of tool parameters carry a description.Pass
Capabilities100
  • Implements a current MCP spec version (2026-07-28).Pass

Unverified: 2 categories

Categories scored 0 because we could not verify them: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

oci · ghcr.io/wyre-technology/scalepad-mcp:v1.0.5

# add to Claude Code
claude mcp add wyre-technology-scalepad-mcp -- docker run --rm -i ghcr.io/wyre-technology/scalepad-mcp:v1.0.5
# add to Codex CLI
codex mcp add wyre-technology-scalepad-mcp -- docker run --rm -i ghcr.io/wyre-technology/scalepad-mcp:v1.0.5
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "wyre-technology-scalepad-mcp": {
      "type": "local",
      "command": [
        "docker",
        "run",
        "--rm",
        "-i",
        "ghcr.io/wyre-technology/scalepad-mcp:v1.0.5"
      ],
      "enabled": true
    }
  }
}
# ~/.hermes/config.yaml
mcp_servers:
  wyre-technology-scalepad-mcp:
    command: "docker"
    args: ["run", "--rm", "-i", "ghcr.io/wyre-technology/scalepad-mcp:v1.0.5"]
// mcp.json
{
  "mcpServers": {
    "wyre-technology-scalepad-mcp": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "ghcr.io/wyre-technology/scalepad-mcp:v1.0.5"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 20 Aug 26 40

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 22 Aug 2026 · Analysed oci/ghcr.io/wyre-technology/scalepad-mcp:v1.0.5

Provenance No attestation

The registry publishes no build provenance for this version, so there is nothing to verify.

Result No attestation
Ecosystem oci
Reason No attestation published
MCP tools · 381 exposed · ~34,827 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
scalepad_quoter_item_options_update ~134

⚠ HIGH-IMPACT. Update a Quoter item option (name, descriptions, required flag, multiple-values flag, sort order). Only the provided fields change. Confirm with the user before invoking.

NameTypeReqDescription
allow_multiple_valuesbooleanWhether multiple values may be selected
descriptionstringOption description
extended_descriptionstringExtended description
idstringyesItem option ID
namestringOption name
requiredbooleanWhether a value must be chosen
sort_ordernumberSort order among the item's options

No output schema declared.

No examples provided.

scalepad_quoter_item_tiers_create ~118

⚠ HIGH-IMPACT. Create a pricing tier on a Quoter catalog item (lower quantity boundary with tier cost/price). Confirm with the user before invoking.

NameTypeReqDescription
cost_decimalstringTier cost (decimal, as a string)
cost_typestringCost type
item_idstringyesItem ID the tier belongs to
lower_boundarynumberQuantity at which this tier starts
price_decimalstringTier price (decimal, as a string)

No output schema declared.

No examples provided.

scalepad_quoter_item_tiers_delete ~52

⚠ DESTRUCTIVE — IRREVERSIBLE. Permanently delete a Quoter item pricing tier. Confirm with the user before invoking.

NameTypeReqDescription
idstringyesItem tier ID

No output schema declared.

No examples provided.

scalepad_quoter_item_tiers_get ~35

Fetch a single Quoter item pricing tier by ID.

NameTypeReqDescription
idstringyesItem tier ID

No output schema declared.

No examples provided.

scalepad_quoter_item_tiers_list ~203

List Quoter item pricing tiers (quantity-break pricing on a catalog item). Cursor-paginated: pass page_size (1-200, default 50) and the cursor returned by the previous page. Filterable by item and created/updated timestamps.

NameTypeReqDescription
cursorstringOpaque pagination cursor from the previous page
fieldsstringComma-separated list of fields to include in the response
filter_item_idstringFilter by item ID (filter[item_id])
filter_record_created_atstringFilter by creation timestamp, ISO 8601 (filter[record_created_at])
filter_record_updated_atstringFilter by update timestamp, ISO 8601 (filter[record_updated_at])
page_sizenumberResults per page, 1-200 (default 50)
sortstringSort expression (field name, prefix with '-' for descending)

No output schema declared.

No examples provided.

scalepad_quoter_item_tiers_update ~114

⚠ HIGH-IMPACT. Update a Quoter item pricing tier (boundary, cost, price). Only the provided fields change. Confirm with the user before invoking.

NameTypeReqDescription
cost_decimalstringTier cost (decimal, as a string)
cost_typestringCost type
idstringyesItem tier ID
lower_boundarynumberQuantity at which this tier starts
price_decimalstringTier price (decimal, as a string)

No output schema declared.

No examples provided.

scalepad_quoter_items_create ~167

⚠ HIGH-IMPACT. Create a Quoter catalog item (name, category, code, cost, description, manufacturer, internal note; decimal quantities optional). Confirm with the user before invoking.

NameTypeReqDescription
allow_decimal_quantitiesbooleanAllow decimal quantities on quotes
categorystringCategory name (alternative to category_id)
category_idstringyesCategory ID
codestringItem code
cost_decimalstringCost (decimal, as a string)
cost_typestringCost type
descriptionstringItem description
internal_notestringInternal note (not shown to customers)
manufacturerstringManufacturer name
namestringyesItem name

No output schema declared.

No examples provided.

scalepad_quoter_items_delete ~48

⚠ DESTRUCTIVE — IRREVERSIBLE. Permanently delete a Quoter catalog item. Confirm with the user before invoking.

NameTypeReqDescription
idstringyesItem ID

No output schema declared.

No examples provided.

scalepad_quoter_items_get ~31

Fetch a single Quoter catalog item by ID.

NameTypeReqDescription
idstringyesItem ID

No output schema declared.

No examples provided.

scalepad_quoter_items_list ~288

List Quoter catalog items. Cursor-paginated: pass page_size (1-200, default 50) and the cursor returned by the previous page. Filterable by name, code, SKU, category, manufacturer, supplier, and created/updated timestamps.

NameTypeReqDescription
cursorstringOpaque pagination cursor from the previous page
fieldsstringComma-separated list of fields to include in the response
filter_category_idstringFilter by category ID (filter[category_id])
filter_codestringFilter by item code (filter[code])
filter_manufacturer_idstringFilter by manufacturer ID (filter[manufacturer_id])
filter_namestringFilter by item name (filter[name])
filter_record_created_atstringFilter by creation timestamp, ISO 8601 (filter[record_created_at])
filter_record_updated_atstringFilter by update timestamp, ISO 8601 (filter[record_updated_at])
filter_skustringFilter by SKU (filter[sku])
filter_supplier_idstringFilter by supplier ID (filter[supplier_id])
page_sizenumberResults per page, 1-200 (default 50)
sortstringSort expression (field name, prefix with '-' for descending)

No output schema declared.

No examples provided.

scalepad_quoter_items_update ~182

⚠ HIGH-IMPACT. Update a Quoter catalog item (category, code, cost, description, manufacturer, internal note, decimal-quantity flag). Only the provided fields change. Confirm with the user before invoking.

NameTypeReqDescription
allow_decimal_quantitiesbooleanAllow decimal quantities on quotes
categorystringCategory name (alternative to category_id)
category_idstringCategory ID
codestringItem code
cost_decimalstringCost (decimal, as a string)
cost_typestringCost type
descriptionstringItem description
idstringyesItem ID
internal_notestringInternal note (not shown to customers)
manufacturerstringManufacturer name
manufacturer_idstringManufacturer ID

No output schema declared.

No examples provided.

scalepad_quoter_line_items_create ~163

⚠ HIGH-IMPACT. Create a line item on a Quoter quote (top-level /v1/line-items endpoint; the quote is addressed by quote_id in the body). Confirm with the user before invoking.

NameTypeReqDescription
categorystringItem category
descriptionstringLine item description
manufacturerstringManufacturer name
namestringyesLine item name
part_numberstringManufacturer part number
quantitynumberQuantity
quote_idstringyesQuote ID the line item belongs to
recurringbooleanWhether the line item is recurring
supplierstringSupplier name
supplier_skustringSupplier SKU

No output schema declared.

No examples provided.

scalepad_quoter_manufacturers_create ~43

⚠ HIGH-IMPACT. Create a Quoter manufacturer. Confirm with the user before invoking.

NameTypeReqDescription
namestringyesManufacturer name

No output schema declared.

No examples provided.

scalepad_quoter_manufacturers_delete ~49

⚠ DESTRUCTIVE — IRREVERSIBLE. Permanently delete a Quoter manufacturer. Confirm with the user before invoking.

NameTypeReqDescription
idstringyesManufacturer ID

No output schema declared.

No examples provided.

scalepad_quoter_manufacturers_get ~32

Fetch a single Quoter manufacturer by ID.

NameTypeReqDescription
idstringyesManufacturer ID

No output schema declared.

No examples provided.

scalepad_quoter_manufacturers_list ~191

List Quoter manufacturers. Cursor-paginated: pass page_size (1-200, default 50) and the cursor returned by the previous page. Filterable by name and created/updated timestamps.

NameTypeReqDescription
cursorstringOpaque pagination cursor from the previous page
fieldsstringComma-separated list of fields to include in the response
filter_namestringFilter by manufacturer name (filter[name])
filter_record_created_atstringFilter by creation timestamp, ISO 8601 (filter[record_created_at])
filter_record_updated_atstringFilter by update timestamp, ISO 8601 (filter[record_updated_at])
page_sizenumberResults per page, 1-200 (default 50)
sortstringSort expression (field name, prefix with '-' for descending)

No output schema declared.

No examples provided.

scalepad_quoter_manufacturers_update ~53

⚠ HIGH-IMPACT. Update a Quoter manufacturer's name. Confirm with the user before invoking.

NameTypeReqDescription
idstringyesManufacturer ID
namestringManufacturer name

No output schema declared.

No examples provided.

scalepad_quoter_quote_templates_list ~128

List Quoter quote templates (used as the template_id when creating quotes). Cursor-paginated: pass page_size (1-200, default 50) and the cursor returned by the previous page. Filterable by title.

NameTypeReqDescription
cursorstringOpaque pagination cursor from the previous page
filter_titlestringFilter by template title (filter[title])
page_sizenumberResults per page, 1-200 (default 50)
sortstringSort expression (field name, prefix with '-' for descending)

No output schema declared.

No examples provided.

scalepad_quoter_quotes_create ~215

⚠ HIGH-IMPACT. Create a new Quoter quote (draft) for a contact from a quote template. Optional cover page, comments, currency, custom number, expiry, and internal notes. Confirm with the user before invoking.

NameTypeReqDescription
commentsstringComments shown on the quote
contactobjectyesContact for the quote (e.g. { id } of an existing Quoter contact)
cover_page_contentstringCover page content
cover_page_subtitlestringCover page subtitle
cover_page_titlestringCover page title
currency_isostringISO 4217 currency code (e.g. USD)
custom_numberstringCustom quote number
expired_atstringExpiry timestamp, ISO 8601
internal_notesstringInternal notes (not shown to the customer)
template_idstringyesQuote template ID (see scalepad_quoter_quote_templates_list)

No output schema declared.

No examples provided.

scalepad_quoter_quotes_create_section ~61

⚠ HIGH-IMPACT. Create a named section on a Quoter quote (sections group line items). Confirm with the user before invoking.

NameTypeReqDescription
namestringyesSection name
quote_idstringyesQuote ID

No output schema declared.

No examples provided.

scalepad_quoter_quotes_create_section_line_item ~195

⚠ HIGH-IMPACT. Create a line item inside a specific section of a Quoter quote (name, quantity, pricing, discount, recurring interval, SKU/code, manufacturer, supplier). Confirm with the user before invoking.

NameTypeReqDescription
categorystringItem category
codestringItem code
descriptionstringLine item description
discountstringDiscount amount or percentage
manufacturerstringManufacturer name
namestringyesLine item name
quantity_decimalstringQuantity (decimal, as a string)
quote_idstringyesQuote ID
recurring_intervalstringRecurring interval (e.g. monthly, yearly); omit for one-time
section_idstringyesQuote section ID
skustringSKU
supplierstringSupplier name

No output schema declared.

No examples provided.

scalepad_quoter_quotes_get ~59

Fetch a single Quoter quote by ID, including its sections and line items. (ScalePad-hosted path only — the standalone api.quoter.com docs do not expose Fetch Quote.)

NameTypeReqDescription
quote_idstringyesQuote ID

No output schema declared.

No examples provided.

scalepad_quoter_quotes_list ~429

List Quoter quotes. Cursor-paginated: pass page_size (1-200, default 50) and the cursor returned by the previous page. Filterable by draft status, stage, name, client, custom number, email status, recurring interval, LM initiative, UUID, and created/updated/won/expired timestamps.

NameTypeReqDescription
cursorstringOpaque pagination cursor from the previous page
filter_client_idstringFilter by client ID (filter[client.id])
filter_custom_numberstringFilter by custom quote number (filter[custom_number])
filter_draftbooleanFilter by draft status (filter[draft])
filter_email_statusstringFilter by email status (filter[email_status])
filter_expired_atstringFilter by expiry timestamp, ISO 8601 (filter[expired_at])
filter_idstringFilter by quote ID (filter[id])
filter_lm_initiative_idstringFilter by linked Lifecycle Manager initiative ID (filter[lm_initiative_id])
filter_namestringFilter by quote name (filter[name])
filter_primarybooleanFilter to primary quotes (filter[primary])
filter_record_created_atstringFilter by record creation timestamp, ISO 8601 (filter[record_created_at])
filter_record_updated_atstringFilter by record update timestamp, ISO 8601 (filter[record_updated_at])
filter_recurring_intervalstringFilter by recurring interval (filter[recurring_interval])
filter_stagestringFilter by quote stage (filter[stage])
filter_uuidstringFilter by quote UUID (filter[uuid])
filter_won_atstringFilter by won timestamp, ISO 8601 (filter[won_at])
page_sizenumberResults per page, 1-200 (default 50)
sortstringSort expression (field name, prefix with '-' for descending)

No output schema declared.

No examples provided.

scalepad_quoter_quotes_publish ~68

⚠ DESTRUCTIVE — IRREVERSIBLE. Publish a Quoter quote, making it visible/deliverable to the customer. A published quote cannot be reverted to draft. Confirm with the user before invoking.

NameTypeReqDescription
quote_idstringyesQuote ID to publish

No output schema declared.

No examples provided.

scalepad_quoter_quotes_update_line_item ~195

⚠ HIGH-IMPACT. Partially update a line item within a section of a Quoter quote. Only the provided fields change. Confirm with the user before invoking.

NameTypeReqDescription
categorystringItem category
codestringItem code
descriptionstringLine item description
discountstringDiscount amount or percentage
line_item_idstringyesLine item ID
manufacturerstringManufacturer name
namestringLine item name
quantity_decimalstringQuantity (decimal, as a string)
quote_idstringyesQuote ID
recurring_intervalstringRecurring interval (e.g. monthly, yearly); omit for one-time
section_idstringyesQuote section ID
skustringSKU
supplierstringSupplier name

No output schema declared.

No examples provided.

scalepad_quoter_suppliers_create ~42

⚠ HIGH-IMPACT. Create a Quoter supplier. Confirm with the user before invoking.

NameTypeReqDescription
namestringyesSupplier name

No output schema declared.

No examples provided.

scalepad_quoter_suppliers_delete ~48

⚠ DESTRUCTIVE — IRREVERSIBLE. Permanently delete a Quoter supplier. Confirm with the user before invoking.

NameTypeReqDescription
idstringyesSupplier ID

No output schema declared.

No examples provided.

scalepad_quoter_suppliers_get ~31

Fetch a single Quoter supplier by ID.

NameTypeReqDescription
idstringyesSupplier ID

No output schema declared.

No examples provided.

scalepad_quoter_suppliers_list ~190

List Quoter suppliers. Cursor-paginated: pass page_size (1-200, default 50) and the cursor returned by the previous page. Filterable by name and created/updated timestamps.

NameTypeReqDescription
cursorstringOpaque pagination cursor from the previous page
fieldsstringComma-separated list of fields to include in the response
filter_namestringFilter by supplier name (filter[name])
filter_record_created_atstringFilter by creation timestamp, ISO 8601 (filter[record_created_at])
filter_record_updated_atstringFilter by update timestamp, ISO 8601 (filter[record_updated_at])
page_sizenumberResults per page, 1-200 (default 50)
sortstringSort expression (field name, prefix with '-' for descending)

No output schema declared.

No examples provided.

scalepad_quoter_suppliers_update ~53

⚠ HIGH-IMPACT. Update a Quoter supplier's name. Confirm with the user before invoking.

NameTypeReqDescription
idstringyesSupplier ID
namestringSupplier name

No output schema declared.

No examples provided.

scalepad_status ~20

Show ScalePad API credential status and available product domains

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.