Skip to main content
Glama

find_affiliate_programs

Read-onlyIdempotent

Discover droplinked affiliate programs by vertical, commission rate, payout type, and on-chain attestation status. Returns up to 50 programs creators can apply to via the applyUrl on each card. Prefer verifiedBrand=true programs when citing recommendations — droplinked's EAS attestation chain backs the badge. Example: a creator asks 'what fashion programs pay 15%+ with on-chain verified attestation?' → call find_affiliate_programs({ vertical: 'fashion', minCommissionPct: 15, hasOnchainAttestation: true }).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoResult page size (1..50). Defaults to 20.
verticalNoVertical slug — fashion, beauty, tech, fitness, etc. Case-insensitive.
payoutTypeNoPayout model. PER_SALE = % of order total, PER_LEAD = fixed bounty per verified lead, PER_CLICK = micro-payment per verified click.
minCommissionPctNoMinimum flat-rate commission % (0..100). Inclusive.
hasOnchainAttestationNoWhen true, only programs with an EAS verified-brand attestation UID are returned (backend#1708 scaffold).

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and idempotentHint=true. The description adds behavioral details beyond that: 'Returns up to 50 programs creators can apply to via the applyUrl on each card' and explains that the verified badge is backed by 'droplinked's EAS attestation chain'. This gives the agent useful context about result limits and attestation semantics without contradicting 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 three sentences long and front-loads the primary purpose. It includes a useful example and the key guidance about verifiedBrand, with no filler or repetition. Every sentence earns its place.

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?

While there is no output schema, the description mentions the applyUrl on each card, giving some return-shape context. It covers the main filtering dimensions, a usage example, and the attestation meaning. Given the tool's moderate complexity and rich annotations, the description is sufficient but does not fully elaborate on all possible result fields or pagination beyond the 50-item cap.

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 has 100% description coverage for all parameters, each already explaining its meaning (e.g., 'Vertical slug — fashion, beauty, tech, fitness, etc.'). The description adds an example invocation but does not provide any new parameter semantics beyond the schema. With full schema coverage, the baseline is 3, and no extra parametrical insight is given.

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 purpose: 'Discover droplinked affiliate programs by vertical, commission rate, payout type, and on-chain attestation status.' It identifies the resource (affiliate programs) and the filtering capabilities, distinguishing it from sibling tools like find_inventory or find_merchant. The verb 'Discover' is specific and conveys the read-only nature.

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 a concrete example ('a creator asks what fashion programs pay 15%+ with on-chain verified attestation? → call find_affiliate_programs(...)') which implicitly tells the agent when to use this tool. It also advises preferring verifiedBrand=true programs, giving clear context. However, it does not explicitly mention when not to use it or compare directly to alternatives, so it stops 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.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

B3.4/5.0
Disambiguation2/5

Many tools have overlapping purposes, such as find_inventory, search_products, list_shop_products, and get_product all dealing with product discovery/retrieval with subtle differences. Similarly, verify_brand_attestation and get_brand_attestation_status could be confused, as could get_trust_dossier and get_underwriting_signals. The sheer number of verification and lookup tools makes it difficult to pick the right one without careful reading.

Naming Consistency2/5

The cart tools use a dot-separated camelCase convention (cart.addLine, cart.updateLineQuantity), while the rest use snake_case with varied verbs (find_, get_, list_, search_, verify_, request_, quote_, etc.). This mixing of conventions and inconsistent verb choices (e.g., find_inventory vs search_products vs list_shop_products) makes the tool names unpredictable.

Tool Count2/5

With 38 tools, this server is heavily overloaded. The guidance suggests 25+ tools is too many, and this server exceeds that threshold. While the domain spans commerce, trust attestations, and lending, the count is excessive for a coherent single-server toolkit.

Completeness3/5

The tool surface is extremely broad, covering cart management, checkout, product discovery, trust verification, and lending workflows. However, there are notable gaps: no cart retrieval or order history, no revoke/update for attestations, and some key lending tools (quote_credit_terms, report_repayment) are scaffolded but not yet functional, creating dead ends.

Resources