Skip to main content
Glama

start_subscription

Activate instantly. No browser, no human action needed.
Returns a session_token — store it for daily get_bundle calls.
100 free tokens on signup. Call list_channels for available slugs.

Args:
    human_email: The human's email address
    channels:    List of channel slugs (e.g. ["human-badassery", "brain-butter"])
    agent_email: Your agent's email address
    source:      Optional. How you found us (e.g. "mcpregistry", "relay", "search")

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sourceNo
channelsYes
agent_emailYes
human_emailYes

TDQS

A4.6/5.0
Behavior4/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It effectively discloses key traits: activation is instant without browser or human action, returns a session_token, and includes 100 free tokens on signup. These behavioral details go beyond what the schema provides. The only missing information is potential cost implications after the free tokens, but the free token offering is clearly stated, making this mostly 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 extremely concise with six short lines of prose plus a parameter list. It front-loads the key behavioral claims ('Activate instantly. No browser, no human action needed.') and provides actionable instructions immediately. Every sentence adds value—no wasted words. The parameter list is cleanly formatted with single-line explanations.

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?

Given the tool has 4 parameters, no output schema, and no annotations, the description covers the essentials: what the tool does, what it returns, where to get pre-requisite data (list_channels), and what to do with the output. The only minor gap is lack of error handling or failure modes, but the tool appears simple and low-risk. It is sufficiently complete for an agent to invoke 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 description coverage is 0%, so the description must compensate. It defines all four parameters clearly: human_email, channels, agent_email, and source with an example for channels and default guidance for source. The descriptions add meaning beyond the schema's empty titles by providing context like 'Your agent's email address' and 'How you found us (e.g. 'mcpregistry')'. The only gap is that required status is implicit from the list, but the schema already marks required fields.

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 activates a subscription ('Activate instantly') and specifies the resource it operates on. It distinguishes itself from siblings by mentioning 'Returns a session_token — store it for daily get_bundle calls', which differentiates it from get_bundle and list_channels. The verb 'start_subscription' combined with the description of instant activation provides a specific and unambiguous purpose.

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?

The description provides explicit guidance on when to use this tool and what to do afterward: 'store it for daily get_bundle calls' tells the agent to use the session_token with get_bundle subsequently. It also informs the agent about available channels via 'Call list_channels for available slugs', directing to a sibling tool for prerequisites. This covers both when to use and what actions to take before and after.

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
Disambiguation4/5

Tools are mostly distinct: try_sample shows a preview, start_subscription activates, create_setup_link offers an alternative path. However, get_bundle and get_template could be confused (both return HTML and mention {4bots}), and get_summary overlaps slightly with list_channels (pricing info appears in both).

Naming Consistency4/5

Names consistently use verb_noun pattern (create_setup_link, start_subscription, list_channels, get_bundle). The only minor inconsistency is get_summary vs the more specific get_bundle/get_template/get_session—the verb 'get' remains uniform but 'summary' is vaguer than the others.

Tool Count4/5

9 tools is appropriate for a subscription content service. There is one tool for each key action (preview, subscribe, fetch, manage account, vote, view info). The count feels well-scoped—not too few to cover the domain, not too many to overwhelm.

Completeness4/5

Core lifecycle is covered: try_sample (preview), start_subscription/create_setup_link (subscribe), get_bundle (daily delivery), get_session (account status), list_channels/vote (discover/select channels). Minor gaps include no unsubscribe/stop tool and no update_subscription to change channels, but the primary workflow is complete.