mcpbeat Sign in

Moltline Personal Suite MCP Server

answering

Moltline Personal Suite is answering right now. Last checked 12 min ago. It exposes 9 tools. Last commit 18 Aug 2026.

20 inbox, calendar, travel, meals and family-logistics skill products. 7 of 9 free.

Uptime history 15 days of history · worst day 98%
15 days agonow
98.9%
Uptime 24h
90 of 91 checks
9
Tools
read from the server
319 ms
Response time
average over 24h
0
Stars
last commit 18 Aug 2026

Moltline Personal Suite does not always answer

Over the last week it answered 99.8% of our checks. We check every 15 minutes, so you hear about the next outage within the hour — not from your users.

Three servers free · no card

Connect this server

Endpoint below is the one we actually reach during checks — not the one copied from a README. Last verified 12 min ago.

run in your terminal
claude mcp add personal --transport http https://mcp.moltlinestudio.com/personal
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "personal": {
      "url": "https://mcp.moltlinestudio.com/personal"
    }
  }
}
~/.codex/config.toml
[mcp_servers.personal]
url = "https://mcp.moltlinestudio.com/personal"
.cursor/mcp.json
{
  "mcpServers": {
    "personal": {
      "url": "https://mcp.moltlinestudio.com/personal"
    }
  }
}
.vscode/mcp.json
{
  "mcpServers": {
    "personal": {
      "url": "https://mcp.moltlinestudio.com/personal"
    }
  }
}

Available tools 9

Read directly from the server with tools/list, grouped by what they act on. If a tool disappears, we record the date.

full
get_full_product
Load one product in full: its persona plus every paid skill. PREMIUM (license). Typical input {"slug": "inbox-assistant"} returns {"slug": ..., "name": ..., "persona": "<persona text>", "skills": [{"name": ..., "instructions": ...}, ...], "free_skill": {...}}. Returns persona plus every skill for one product. Use when the caller wants the whole product. Not for a single skill (get_full_skill) and not for a free look, which list_products and get_free_skill provide with no plan. Errors: on invalid, missing, or malformed input this tool never raises a protocol error — it returns {"error": "<what is wrong and how to fix it>"} (for example {"error": "unknown slug '<value>'"}). Every call is read-only and idempotent, so after correcting the input it is always safe to retry.
get_full_skill
Load one paid skill's complete instructions from a product. PREMIUM (license). Typical input {"slug": "inbox-assistant", "skill_name": "Zero Sweep"} returns {"slug": ..., "skill": ..., "instructions": "<full skill text>"}. Returns one named skill, selected by skill_name. Use when the caller wants one specific paid skill. Not for the free gateway skill, which get_free_skill returns with no plan, and not for every skill at once (get_full_product). Errors: on invalid, missing, or malformed input this tool never raises a protocol error — it returns {"error": "<what is wrong and how to fix it>"} (for example {"error": "unknown slug '<value>'"}). Every call is read-only and idempotent, so after correcting the input it is always safe to retry.
budget
budget_split
Split monthly income into needs/wants/savings buckets with weekly equivalents. FREE. Defaults to the 50/30/20 rule, fully customizable. Typical input {"monthly_income": 4000} returns {"needs": {"pct": 50, "monthly": 2000.0, "weekly": 461.54}, "wants": {...}, "savings": {...}, "note": "..."}. Use when monthly income needs allocating across buckets. Not for how long a target takes to reach (savings_goal). Errors: on invalid, missing, or malformed input this tool never raises a protocol error — it returns {"error": "<what is wrong and how to fix it>"} (for example {"error": "monthly_income must be > 0"}). Every call is read-only and idempotent, so after correcting the input it is always safe to retry.
countdown
countdown_days
Count the days until each named event, soonest first. FREE. Typical input {"events": {"Launch": "2026-10-01", "Trip": "2026-09-05"}} returns {"today": "YYYY-MM-DD", "events": [{"event": "Trip", "date": "2026-09-05", "days_away": 20}, ...]}; a bad date gets a per-event error entry instead of failing the whole call. Use to rank named dates by how soon they arrive. Not for working-day math, which the timeops server's business_days handles, and not for building a review schedule (spaced_repetition_plan). Errors: on invalid, missing, or malformed input this tool never raises a protocol error — it returns {"error": "<what is wrong and how to fix it>"}. Every call is read-only and idempotent, so after correcting the input it is always safe to retry.
free
get_free_skill
Load a product's free gateway skill with its complete instructions. FREE. Typical input {"slug": "inbox-assistant"} returns {"slug": ..., "skill": "<skill name>", "instructions": "<full skill text>"}. Returns exactly one skill - the product's free gateway skill - chosen automatically from the slug, with no plan required. Use when the caller wants usable instructions immediately. Not for the product's other skills: those are named and need get_full_skill with a skill_name, which requires a paid plan. Errors: on invalid, missing, or malformed input this tool never raises a protocol error — it returns {"error": "<what is wrong and how to fix it>"} (for example {"error": "unknown slug '<value>'. Use list_products."}). Every call is read-only and idempotent, so after correcting the input it is always safe to retry.
products
list_products
List every product in the Personal Suite line with its included skills. FREE. Takes no arguments. Returns a list of 20 product objects, each {"slug": "inbox-assistant", "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. Returns metadata only - no persona text and no skill instructions. Use when the caller wants to see what this server covers. Not for keyword search across the whole 138-product catalog, which the catalog server's search_catalog does, and not for instructions the caller can act on (get_free_skill). Errors: on invalid, missing, or malformed input this tool never raises a protocol error — it returns {"error": "<what is wrong and how to fix it>"}. Every call is read-only and idempotent, so after correcting the input it is always safe to retry.
savings
savings_goal
Compute months to reach a savings target at a monthly contribution. FREE. Optionally compounds interest monthly. Administrative math only — not financial advice. Typical input {"target": 10000, "monthly_saving": 400, "annual_rate_pct": 4} returns {"months": 24, "years": 2.0, "final_balance": 10021.94, "interest_earned": 421.94, "note": "..."}. Use when a target amount and a monthly contribution are known. Not for allocating income across categories (budget_split) and not for loan repayment, which the business server's loan_payment computes. Errors: on invalid, missing, or malformed input this tool never raises a protocol error — it returns {"error": "<what is wrong and how to fix it>"} (for example {"error": "target and monthly_saving must be > 0"}). Every call is read-only and idempotent, so after correcting the input it is always safe to retry.
spaced
spaced_repetition_plan
Build a spaced-repetition review schedule with expanding intervals. FREE. Intervals follow 1, 3, 7, 14, 30, 60, 120, 240 days. Typical input {"start_date": "2026-09-01", "sessions": 4} returns {"start": "2026-09-01", "reviews": [{"session": 1, "day_offset": 1, "date": "2026-09-02"}, ...]}. Use when material must be reviewed on expanding intervals. Not for timing a single session, which the educator server's lesson_timer handles. Errors: on invalid, missing, or malformed input this tool never raises a protocol error — it returns {"error": "<what is wrong and how to fix it>"} (for example {"error": "start_date must be YYYY-MM-DD"}). Every call is read-only and idempotent, so after correcting the input it is always safe to retry.
tip
tip_split
Compute the tip and per-person split for a bill. FREE. Typical input {"bill": 86.40, "tip_pct": 20, "people": 4} returns {"tip": 17.28, "total": 103.68, "per_person": 25.92}. Use for one bill shared among a group. Not for recurring household budgeting (budget_split). Errors: on invalid, missing, or malformed input this tool never raises a protocol error — it returns {"error": "<what is wrong and how to fix it>"} (for example {"error": "bill must be > 0 and people >= 1"}). Every call is read-only and idempotent, so after correcting the input it is always safe to retry.

Endpoints

URLTransportStateLatencyChecked
https://mcp.moltlinestudio.com/personal streamable-http answering 235 ms 12 min ago

Alternatives to Moltline Personal Suite

same job, measured the same way
Moltline Business Suite
by moltlinestudio

30 finance, bookkeeping, legal-ops and SMB operations skill products. 6 of 8 tools free.

8 tools answering
Moltline Outbound Engine
by moltlinestudio

7 outreach, sequencing, call-coaching and CRM-hygiene skill products. 6 of 8 free.

8 tools answering
Moltline Research Desk
by moltlinestudio

7 research navigation, thesis, note-taking and citation skill products. 6 of 8 free.

8 tools answering
Moltline Creator Studio
by moltlinestudio

20 blogging, brand-voice, copywriting, video and social skill products. 6 of 8 free.

8 tools answering
Moltline Educator Toolkit
by moltlinestudio

8 curriculum, classroom, accommodations and exam-prep skill products. 5 of 7 free.

7 tools answering
StudioMeyer Personal Suite
by studiomeyer

Local-first productivity: email, calendar, messaging, search, image gen. 49 tools. BYOK.

72 installs/wk local only
Snug Planner
by snugplanner

The first official family-planner MCP: tasks, calendar, meals, shopping and reminders.

answering
Ponlo
by ponlo

Family calendar, tasks, meals, lists & rewards hub for AI assistants.

87 installs/wk local only

Moltline Personal Suite — questions

Answers built from our own checks of this server.

What can Moltline Personal Suite do?
It exposes 9 tools, read directly from the server on our last check. Among them: budget_split, countdown_days, get_free_skill, get_full_product, get_full_skill, list_products and 3 more. The full list with descriptions is on this page — we take it from the server itself via tools/list, not from a README. How MCP servers expose tools in the first place →
Is Moltline Personal Suite working right now?
We send a real MCP handshake every 15 minutes. Over the last 24 hours 90 of 91 checks got a reply (98.9%), average response time 319 ms. The bar chart above shows every period we have measured.
How do I connect Moltline Personal Suite?
Copy the ready config from this page — we generate it for Claude Code, Claude Desktop, Codex, Cursor and VS Code, each with the file path that client actually reads. It is a remote server, so there is nothing to install — the client connects to the address.
Does Moltline Personal Suite need an API key?
No. Moltline Personal Suite completed a full MCP handshake with us as an anonymous client and listed its tools without asking for anything. All 9 of them are readable on this page. This is what we observed, not what the docs claim.
How fast is Moltline Personal Suite?
It answers our handshake in 319 ms on average, which is faster than 55% of all working MCP servers we measure. The comparison comes from our own checks across the whole registry, every 15 minutes.
Is Moltline Personal Suite open source?
Yes — it is published under the MIT licence, written in Python and 0 stars on GitHub. The source link is on this page, so you can read exactly what it does with your data before you connect it.