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.4/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. It transparently states that activation is instant, requires no browser/human action, returns a session_token, and mentions 100 free tokens. However, it does not explain what happens on failure (e.g., invalid email), if the subscription expires, or any rate limits. Still, the core behavioral traits are well disclosed.

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: three short sentences followed by a clear Args list. Every sentence earns its place—no filler. The most important behavioral highlights are front-loaded.

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 4 parameters with 0% schema coverage, no annotations, and no output schema, the description does a commendable job covering the input semantics and key effects (instant activation, session_token, free tokens). It could be slightly more complete by describing the return value structure beyond 'session_token' and error conditions, but for a tool of this complexity it is largely complete.

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 provides useful context for each parameter inline in the Args section: human_email is 'The human's email address', channels is 'List of channel slugs (e.g. ["human-badassery", "brain-butter"])', agent_email is 'Your agent's email address', and source is 'Optional. How you found us (e.g. "mcpregistry", "relay", "search")'. This adds meaning beyond the schema properties which only have titles. The only gap is that it doesn't explain the format/validation of email addresses.

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 starts with 'Activate instantly. No browser, no human action needed.' which clearly states the verb (activate/start) and the resource (subscription) with a unique selling point of instant activation. It is well distinguished from siblings like create_setup_link (which likely needs browser action) and get_bundle (which retrieves data).

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: use this to start a subscription, and then use get_bundle daily with the returned session_token. It also directs to list_channels for available slugs. However, it does not explicitly say when not to use it or list alternatives for other use cases, resulting in a slight deduction.

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

A3.8/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: creating a setup link vs. starting a subscription, previewing sample content vs. fetching the daily bundle, listing channels vs. voting, etc. Descriptions explicitly clarify differences (e.g., 'For a fast start without human input, use start_subscription').

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern using snake_case: create_setup_link, get_bundle, get_session, get_summary, get_template, list_channels, start_subscription, try_sample, vote. No mixed conventions or vague verbs.

Tool Count5/5

9 tools is well-scoped for a content subscription service. Each tool serves a single, necessary function (subscription activation, daily content, account info, channel listing, voting, etc.) with no redundancy or bloat.

Completeness5/5

The tool surface covers the full lifecycle: subscription start (two paths), daily content retrieval, account status, catalog/pricing, email template, channel discovery, and community voting. The only minor gap is no cancellation tool, but the manage_url in get_session handles that externally. No dead ends for the core workflow.

Resources