
Zero-dependency stdio bridge for the Moltline Studio MCP fleet - 19 hosted streamable-HTTP servers
Zero-dependency stdio bridge for the Moltline Studio MCP fleet - 19 hosted streamable-HTTP servers, 132 tools, 92 of them free with no signup.
A thin, dependency-free stdio bridge to Moltline Studio's fleet of 22 hosted MCP servers.
Most modern MCP clients can connect to the fleet directly over Streamable HTTP — no install needed (see Direct connection below). This bridge exists for clients that only speak the stdio transport: it proxies newline-delimited JSON-RPC between your client and the hosted server, verbatim, with no telemetry and no dependencies beyond the Python 3.9+ standard library.
MOLTLINE_LICENSE in your MCP client's environment; the bridge sends it as the X-Moltline-License header and never writes it to argv, URLs or logs. See auth.md.Find it on: Smithery · MCPize · Glama · Clawmart · MCP Registry
| Server | Tools | What it does |
|---|---|---|
catalog | 10 | Search 138 agent skills and personas by plain-language job; preview any product. |
codereview | 7 | Risk-scan a diff, flag AI-generated-code tells, find secrets, report complexity. |
govern | 8 | Audit an MCP config or SKILL.md for over-broad scope and prompt-injection risk. |
timeops | 5 | Business days, meeting overlap, recurrence expansion, deadline and SLA math. |
data | 7 | Paste-your-data analytics: CSV profiling, A/B tests, correlation, growth, cohorts. |
humanizer | 5 | Find AI-isms with evidence, fingerprint a writing voice, measure burstiness. |
business | 8 | 30 finance, bookkeeping, legal-ops and SMB operations persona-skill products. |
creator | 8 | 20 blogging, brand-voice, copywriting, video and social persona-skill products. |
educator | 7 | 8 curriculum, classroom, accommodations and exam-prep persona-skill products. |
outbound | 8 | 7 outreach, sequencing, deliverability, call-coaching and CRM-hygiene products. |
personal | 9 | 20 inbox, calendar, travel, meals and family-logistics persona-skill products. |
research | 8 | 7 research navigation, thesis, note-taking and citation persona-skill products. |
skillmd-lint | 6 | Lint a SKILL.md for frontmatter, structure, secrets and size. All tools free. |
merchant | 6 | Commerce arithmetic: processor fees, charge-to-net, invoice totals, proration. |
shipping | 6 | Dimensional weight, parcel fit, landed cost, freight class, rate cards. |
shopify | 6 | Check a product CSV, URL handles, variant matrices and metafield keys. |
dropship | 6 | Dropshipping unit economics: margin, lead time, SKU mapping, price ladders. |
recall | 6 | A portable knowledge-graph memory you pass in and get back. No database. |
vision | 6 | Image header probing, bbox conversion, resize plans, color and detection math. |
regclock | 9 | Incident-reporting deadlines from the legal text (EU CRA, NIS2, DORA, GDPR, UK GDPR, HIPAA, SEC 8-K), cited. |
taxlots | 8 | Crypto cost basis: parse exchange CSVs, lint, match transfers, FIFO/LIFO/HIFO lots, Form 8949 rows, 1099-DA diff. |
optimize | 11 | OR-Tools routing, 3-D packing, 1-D/2-D cutting, knapsack and shift rostering with stated limits. |
Machine-readable discovery: api-catalog · per-server card at https://mcp.moltlinestudio.com/<server>/.well-known/mcp/server-card.json · fleet health.
If your MCP client supports Streamable HTTP (Claude Desktop, Claude Code, Cursor, and most current clients do), point it straight at the hosted endpoint — nothing to install:
{
"mcpServers": {
"moltline-timeops": {
"type": "http",
"url": "https://mcp.moltlinestudio.com/timeops"
}
}
}Swap timeops for any slug in the table above.
Run directly (recommended) — the bridge is a single stdlib-only file, so a clone is all you need:
git clone https://github.com/GarphenGate/moltline-mcp.git
python3 moltline-mcp/moltline_mcp.py timeops # any of the 22 slugs; default: catalogDocker — see Docker below if you prefer a container.
A PyPI package is planned; until then, use the methods above.
Point your MCP client at the script with an absolute path:
{
"mcpServers": {
"moltline-timeops": {
"command": "python3",
"args": ["/absolute/path/to/moltline-mcp/moltline_mcp.py", "timeops"]
}
}
}Or run it through Docker (after docker build -t moltline-mcp .):
{
"mcpServers": {
"moltline-timeops": {
"command": "docker",
"args": ["run", "-i", "--rm", "moltline-mcp", "timeops"]
}
}
}python3 moltline_mcp.py [server] [--timeout SECONDS] [--list] [--version]server — one of the 22 slugs (default catalog); anything else fails fast with the valid list.--timeout — per-request timeout in seconds (default 300, or env MOLTLINE_TIMEOUT).--list — print the server slugs and exit.MOLTLINE_BASE_URL — override the fleet base URL (for testing).MOLTLINE_LICENSE — your Moltline license, sent as the X-Moltline-License
header to unlock premium tools. Omit it and the bridge runs free-tier only.MOLTLINE_DEBUG=1 — diagnostic logging on stderr (stdout stays protocol-clean).
The license is never logged; debug output reports only whether one is configured.The bridge also runs containerized (stdio in, network egress to the fleet required):
docker build -t moltline-mcp .
docker run -i --rm moltline-mcp timeops # any of the 22 slugs; default: catalogSee Client configuration for the matching mcpServers entry.
One process per server connection. Each JSON-RPC message read from stdin is POSTed to https://mcp.moltlinestudio.com/<server>; JSON and SSE-framed responses are relayed back to stdout as newline-delimited JSON. The bridge tracks the server-assigned Mcp-Session-Id and echoes the negotiated MCP-Protocol-Version, per the Streamable HTTP transport spec. It never inspects, stores, or reports your traffic.
The bridge ships with an offline test suite - no network, no dependencies:
python -m unittest -vTwenty-two tests cover the parts that actually break in a transport bridge:
newline-delimited framing, SSE event splitting (multiple events, multi-line
data: payloads, a trailing event with no blank line, comments and named
events), session-id capture and reuse, protocol-version negotiation on
initialize only, and error relay - a JSON-RPC error document is passed
through verbatim, anything else becomes a well-formed -32603. CI runs them
on Python 3.9, 3.12 and 3.13, plus a Docker build and container smoke test.
MOLTLINE_LICENSE in the environment and the bridge forwards it as the X-Moltline-License request header. It is deliberately not a command-line flag: argv is world-readable through ps. It is never placed in a URL and never logged. Details: auth.md.MIT © 2026 Moltline Studio
Pick your client and paste the snippet. Each one is the same server, written the way that client expects it.
claude mcp add moltline-timeops --transport http https://mcp.moltlinestudio.com/timeops{
"mcpServers": {
"moltline-timeops": {
"url": "https://mcp.moltlinestudio.com/timeops",
"type": "http"
}
}
}code --add-mcp '{"name":"moltline-timeops","url":"https://mcp.moltlinestudio.com/timeops","type":"http"}'Runs as a hosted service. Your client connects over the network and nothing is installed locally.
Paste this prompt into your agent. It reads this page and does the setup for you.
Read https://aiagentslisting.com/mcp/moltline-mcp to learn what the "Moltline Mcp" MCP server does and how to install it. Add it to my coding agent's MCP configuration as documented on that page, then confirm the server connects and list the tools it exposes.Agents can also browse this directory over MCP at https://aiagentslisting.com/api/mcp
docker run -i --rm moltline-mcp timeops # any of the 22 slugs; default: catalog| Name | What it does |
|---|---|
business_days | Do business-day math that skips weekends and your holiday list. FREE. Either add N business days to start_date (set add_days), or count the business days between start_date and end_date (set end_date |
meeting_overlap | Find the shared meeting window across time zones inside working hours. FREE. Give one UTC offset per participant and an optional working-hours window. Typical input {"offsets_utc": [-8, 1, 5.5]} retu |
recurrence_expand | Expand a recurrence rule into a concrete list of ISO dates. FREE. Set every_days for a fixed interval, or weekly_on for specific weekdays. Typical input {"start_date": "2026-01-05", "every_days": 14, |
deadline_planner | Plan a task schedule backward from a hard deadline in business days. PREMIUM (license). Given ordered tasks with business-day durations, returns each task's start/end dates, the latest safe start, an |
sla_due | Compute when a ticket's SLA falls due, wall-clock or business-hours. PREMIUM (license). Typical input {"opened_at": "2026-03-02T15:30", "sla_hours": 8, "business_hours_only": true} returns {"due": "2 |
Read live from the server on September 16, 2026.
Maintain this server? Claiming proves you own the listing and earns the last 4 points.
Claim this listingPaste this line near the top of your repository's README. The badge always renders the current score.
[](https://aiagentslisting.com/mcp/moltline-mcp)Nothing comparable is listed yet.
v1.1.0moltline-mcp 1.1.0Release notesv1.0.0moltline-mcp 1.0.0Release notesConnect to the AI Agents Listing MCP server at https://aiagentslisting.com/api/mcp using the HTTP transport and complete the sign-in when it asks. Then call the submit_review tool for the listing "moltline-mcp" with a rating from 1 to 5 and a short note on what worked and what did not.No reviews yet
Be the first to share your experience with this tool.
One email a week. New agents, MCP servers and skills, and what is actually getting traction.