Skip to main content
Glama

moltline

Server Details

14 hosted MCP servers with free tiers: code review, time ops, data, business ops, education, more.

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

10 tools
get_free_skillGet Free Skill
Read-onlyIdempotent
Inspect

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

Typical input {"slug": "inbox-zero-assistant"} 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 search_catalog, e.g. "inbox-zero-assistant".

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

get_full_kitGet Full Kit
Read-onlyIdempotent
Inspect

Load a themed kit and every member product in full. PREMIUM (paid plan).

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

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYesKit slug exactly as returned by list_kits, e.g. "founder-kit".

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

get_full_personaGet Full Persona
Read-onlyIdempotent
Inspect

Load a product's complete persona definition. PREMIUM (paid plan).

Typical input {"slug": "inbox-zero-assistant"} returns {"slug": ..., "persona": ""}. 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 search_catalog.

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

get_full_productGet Full Product
Read-onlyIdempotent
Inspect

Load one product in full: persona plus every skill's instructions. PREMIUM (paid plan).

Typical input {"slug": "inbox-zero-assistant"} 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 search_catalog.

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 (paid plan).

Typical input {"slug": "inbox-zero-assistant", "skill_name": "Deep Triage"} 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 search_catalog.
skill_nameYesExact skill name as shown in preview_product's "skills" list for that product.

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

list_kitsList Kits
Read-onlyIdempotent
Inspect

List the 12 themed kits with pricing and member products. FREE.

Takes no arguments. Returns a list of kit objects, each {"slug": ..., "name": ..., "price_usd": N, "tagline": ..., "members": ["product-slug", ...]}. Use a kit's slug with get_full_kit (premium). 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
preview_productPreview Product
Read-onlyIdempotent
Inspect

Preview one product: metadata, persona teaser, and paid-skill teasers. FREE.

Typical input {"slug": "inbox-zero-assistant"} returns {"slug": ..., "name": ..., "tagline": ..., "persona_preview": ..., "skills": [{"name": ..., "preview": ...}], "free_skill": ..., "note": ...}. 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 search_catalog or recommend_products, e.g. "inbox-zero-assistant".

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

recommend_productsRecommend Products
Read-onlyIdempotent
Inspect

Recommend catalog products for a need described in plain language. FREE.

Typical input {"need": "help answering customer support emails"} returns {"need": ..., "recommendations": [{"slug": ..., "name": ..., "why": ..., "area": ..., "try_free": ""}], "next": "..."}. 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
needYesThe job or problem in plain language, a few words or a sentence, e.g. "help answering customer support emails".
limitNoMaximum recommendations; values outside 1-10 are clamped. Default 5.

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

search_catalogSearch Catalog
Read-onlyIdempotent
Inspect

Search all 138 catalog products by keyword and/or focus area. FREE.

Typical input {"query": "email inbox", "limit": 5} returns a ranked list of product objects [{"slug": ..., "name": ..., "area": ..., "segment": ..., "tagline": ...}]. An empty query with an area set browses that area. 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
areaNoOptional focus-area filter; one of "productivity", "developertools", "personalassistant", "creative", "industryspecific", "educational". Empty means all areas.
limitNoMaximum results to return; values outside 1-100 are clamped. Default 15.
queryNoSpace-separated keywords matched against name, tagline, slug, and segment, e.g. "email inbox".

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes
upgrade_infoUpgrade Info
Read-onlyIdempotent
Inspect

Explain how to unlock full personas, paid skills, and kits. FREE.

Takes no arguments. Returns {"message": ..., "how": ..., "free_tier": ...} describing the upgrade path and what stays free. 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

No output parameters

Discussions

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

Related MCP Servers

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.