Skip to main content
Glama

Opedd — Licensed Content for AI

purchase_license

Purchase a content license from the Opedd protocol using a Stripe payment method. Returns a license key (format: OP-XXXX-XXXX) and a certificate URL. The buyer receives a Handshake Email with their license key. Set OPEDD_BUYER_EMAIL and OPEDD_PAYMENT_METHOD_ID env vars to avoid passing them on every call. License types: 'human' = republication rights, 'ai' = training dataset rights, 'ai_inference' = inference/RAG rights.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
article_idNoOpedd article UUID (use this OR article_url)
buyer_nameNoFull name of the buyer (for the license record and certificate)
article_urlNoURL of the article to license (use this OR article_id)
buyer_emailNoEmail address for the license. Falls back to OPEDD_BUYER_EMAIL env var.
intended_useNoIntended use of the licensed content
license_typeYeshuman = republication/editorial rights, ai = training dataset rights, ai_inference = inference/RAG rights
terms_acceptedYesREQUIRED. Set true only after the buyer (your principal) has accepted the Opedd licence terms at opedd.com/terms. The acceptance timestamp is recorded with the licence; purchases without genuine acceptance are rejected.
payment_method_idNoStripe payment method ID (pm_...). Falls back to OPEDD_PAYMENT_METHOD_ID env var.
buyer_organizationNoOrganization or company name (for enterprise/editorial licenses)

TDQS

A3.9/5.0
Behavior3/5

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

With no annotations, the description carries full burden for behavioral disclosure. It mentions the return of a license key and certificate URL, and that a Handshake Email is sent. However, it omits critical behavioral details such as the mandatory 'terms_accepted' requirement, the possibility of rejection, and that a Stripe charge will occur (though 'purchase' implies it). This is a meaningful gap for a financial transaction tool.

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 concise sentences with no fluff. The first sentence states the core action, the second gives the return format, and the third provides env var tips and license type definitions. Each sentence earns its place, and the key information is front-loaded.

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

Completeness3/5

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

Given the tool's complexity (9 params, no annotations, no output schema), the description covers the basic purpose, return values, and env var usage, but omits the critical 'terms_accepted' requirement and the distinction from enterprise licensing. It also does not explain the relationship between article_id and article_url, leaving some gaps for correct usage.

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% coverage for all 9 parameters, including descriptions for each. The description adds some context (license type meanings, env var fallbacks) but largely repeats what is already in the schema, neither compensating for nor materially enhancing the parameter semantics.

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: 'Purchase a content license from the Opedd protocol using a Stripe payment method.' It specifies the resource (content license), the action (purchase), and the payment method, distinguishing it from sibling tools like purchase_enterprise_license.

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 usage, including license types (human, ai, ai_inference) and env var fallbacks, implying when to use this tool for individual licenses. It does not explicitly mention exclusions or alternatives, but the license type breakdown and mention of enterprise licenses as a sibling suggest differentiation.

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

A4.1/5.0
Disambiguation4/5

Most tools have distinct purposes, but list_feed and stream_feed_ndjson both list licensed articles (with different formats), and browse_registry vs publisher_directory could confuse agents about scope. Overall, the set is mostly clear.

Naming Consistency4/5

Names follow a verb_noun pattern with underscores (e.g., get_content, purchase_license). A few outliers like rsl_get and article_53_attestation break the pattern slightly, but the majority are consistent.

Tool Count4/5

17 tools cover buyer, publisher, and discovery workflows. While slightly above the typical 3-15 range, the complexity of the licensing platform justifies the count. No tool seems redundant.

Completeness4/5

The tool set covers discovery, purchase, content retrieval, compliance, and attestation comprehensively. Minor gaps like missing license management or key rotation are acceptable given the domain scope.