Skip to main content
Glama

outbound

Server Details

Hosted MCP server for outreach: copy audits, sequence planning, subject line scoring, UTM builder.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
GarphenGate/moltline-mcp
GitHub Stars
0

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.

Tool Definition Quality

Score is being calculated. Check back soon.

Available Tools

8 tools
audit_copyAudit Copy
Read-onlyIdempotent
Inspect

Audit outreach copy for spam triggers and deliverability risks. FREE.

Checks spam-trigger phrases, length, structure, caps, links, and personalization signals. Typical input {"subject": "Quick question", "body": ""} returns {"score": 0-100, "findings": ["Spam-trigger phrases: ...", "Long for cold outreach (200 words; aim 50-125)"], "note": "..."}. Errors: on invalid, missing, or malformed input this tool never raises a protocol error — it returns {"error": ""}. Every call is read-only and idempotent, so after correcting the input it is always safe to retry.

ParametersJSON Schema
NameRequiredDescriptionDefault
bodyNoThe email body text to audit.
subjectNoThe email subject line; may be empty when auditing body copy alone.

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

get_free_skillGet Free Skill
Read-onlyIdempotent
Inspect

Load a product's free gateway skill with its complete instructions. FREE.

Typical input {"slug": "linkedin-outreach"} returns {"slug": ..., "skill": "", "instructions": ""}. Errors: on invalid, missing, or malformed input this tool never raises a protocol error — it returns {"error": ""} (for example {"error": "unknown slug ''. Use list_products."}). Every call is read-only and idempotent, so after correcting the input it is always safe to retry.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYesProduct slug exactly as returned by list_products, e.g. "linkedin-outreach".

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

get_full_productGet Full Product
Read-onlyIdempotent
Inspect

Load one product in full: its persona plus every paid skill. PREMIUM (license).

Typical input {"slug": "linkedin-outreach"} returns {"slug": ..., "name": ..., "persona": "", "skills": [{"name": ..., "instructions": ...}, ...], "free_skill": {...}}. Errors: on invalid, missing, or malformed input this tool never raises a protocol error — it returns {"error": ""} (for example {"error": "unknown slug ''"}). Every call is read-only and idempotent, so after correcting the input it is always safe to retry.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYesProduct slug exactly as returned by list_products, e.g. "linkedin-outreach".

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

get_full_skillGet Full Skill
Read-onlyIdempotent
Inspect

Load one paid skill's complete instructions from a product. PREMIUM (license).

Typical input {"slug": "linkedin-outreach", "skill_name": "Connection Openers"} returns {"slug": ..., "skill": ..., "instructions": ""}. Errors: on invalid, missing, or malformed input this tool never raises a protocol error — it returns {"error": ""} (for example {"error": "unknown slug ''"}). Every call is read-only and idempotent, so after correcting the input it is always safe to retry.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYesProduct slug exactly as returned by list_products.
skill_nameYesExact skill name as listed in that product's "skills" array from list_products.

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

list_productsList Products
Read-onlyIdempotent
Inspect

List the 7 outbound products with their included skills. FREE.

Takes no arguments. Returns a list of product objects, each {"slug": "linkedin-outreach", "name": ..., "tagline": ..., "skills": ["Skill A", ...], "free_skill": "Gateway Skill Name"}. Use the returned slug values with get_free_skill, get_full_product, or get_full_skill. Errors: on invalid, missing, or malformed input this tool never raises a protocol error — it returns {"error": ""}. Every call is read-only and idempotent, so after correcting the input it is always safe to retry.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes
sequence_plannerSequence Planner
Read-onlyIdempotent
Inspect

Plan an outreach cadence with expanding gaps and per-touch purposes. FREE.

Spaces N touches across D days, alternating channels. Typical input {"touches": 5, "days": 14, "channels": ["email", "linkedin"]} returns {"days": 14, "plan": [{"touch": 1, "day": 0, "channel": "email", "purpose": "open with a specific, researched reason"}, ...], "rule": "..."}. Errors: on invalid, missing, or malformed input this tool never raises a protocol error — it returns {"error": ""}. Every call is read-only and idempotent, so after correcting the input it is always safe to retry.

ParametersJSON Schema
NameRequiredDescriptionDefault
daysNoTotal span of the sequence in days; values outside 1-365 are clamped. Default 14.
touchesNoNumber of touches in the sequence; values outside 2-10 are clamped. Default 5.
channelsNoChannel names to alternate through in order, e.g. ["email", "linkedin", "phone"]. Default ["email", "linkedin"].

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

subject_line_scorerSubject Line Scorer
Read-onlyIdempotent
Inspect

Score and rank up to 20 email subject lines, best first. FREE.

Scores 0-100 on length, spam triggers, caps, personalization tokens, and curiosity cues. Typical input {"subjects": ["Quick question about {{company}}", "ACT NOW!!!"]} returns {"ranked": [{"subject": ..., "score": 92, "notes": ["personalized (+)", "question format"]}, ...]}. Errors: on invalid, missing, or malformed input this tool never raises a protocol error — it returns {"error": ""}. Every call is read-only and idempotent, so after correcting the input it is always safe to retry.

ParametersJSON Schema
NameRequiredDescriptionDefault
subjectsYesList of candidate subject lines as plain strings; only the first 20 are scored.

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

utm_builderUtm Builder
Read-onlyIdempotent
Inspect

Build a UTM-tagged URL for campaign tracking. FREE.

Typical input {"url": "https://example.com/pricing", "source": "newsletter", "medium": "email", "campaign": "spring-launch"} returns {"tagged_url": "https://example.com/pricing?utm_source=newsletter& utm_medium=email&utm_campaign=spring-launch"}. Errors: on invalid, missing, or malformed input this tool never raises a protocol error — it returns {"error": ""} (for example {"error": "url must start with http(s)://"}). Every call is read-only and idempotent, so after correcting the input it is always safe to retry.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesDestination URL; must start with http:// or https://.
termNoOptional utm_term value for paid keywords.
mediumYesutm_medium value — the channel, e.g. "email" or "cpc".
sourceYesutm_source value — where the traffic comes from, e.g. "newsletter".
contentNoOptional utm_content value for A/B variants.
campaignYesutm_campaign value — the campaign name, e.g. "spring-launch".

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • F
    license
    A
    quality
    B
    maintenance
    MCP server for value-first cold outreach to local service businesses, enabling personalized cold email generation and lead scoring.
    5
  • F
    license
    -
    quality
    C
    maintenance
    MCP server that provides tools for cold email outreach, including checking contact history, drafting personalized emails, and retrieving performance summaries from past outreach data.
  • F
    license
    A
    quality
    C
    maintenance
    An MCP server that turns discovery → enrichment → scoring → outreach into callable tools, scoped to 72BPM's four practice areas.
    8

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.