Connect Claude in one paste

One URL turns on 19 hosted MCP servers and 132 tools inside Claude. No account, no API key, no OAuth screen — 92 of those tools answer an anonymous request and always will.

19servers, one URL each
132tools
92free forever
0credentials to create

The sixty-second version

Start with the catalog server. It is the one that answers “is there a skill for this?” and it needs nothing from you.

https://mcp.moltlinestudio.com/catalog
  1. In Claude, open Settings and go to Connectors.
  2. Click Add custom connector at the bottom of the list.
  3. Paste the URL above. Leave Advanced settings alone — there is no OAuth client ID and no client secret, because there is nothing to sign in to.
  4. Click Add. The tools show up in the tool list and can be called straight away.

Anthropic documents custom connectors on the Pro, Max, Team and Enterprise plans. On Team and Enterprise an Owner adds it once from Admin settings and the whole workspace gets it. Add as many of the 19 URLs as you want — each is a separate connector.

Claude Code

Same URL, one command. --scope user makes it available in every project instead of just this one.

claude mcp add --transport http moltline-catalog --scope user \
  https://mcp.moltlinestudio.com/catalog

# then check it came up
claude mcp list

A healthy add prints an Added… line, and claude mcp list shows ✓ Connected next to it. Cursor, Codex CLI and anything else that speaks MCP Streamable HTTP take the same URL unchanged — there is no per-client variant.

Prove it before you paste it

You should not add a connector on a stranger’s word. Two commands, no credentials, and you can see exactly what it does.

# what is this server and what is in it
curl -s https://mcp.moltlinestudio.com/catalog/.well-known/mcp/server-card.json

# open a session and list the tools
curl -sD- https://mcp.moltlinestudio.com/catalog \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json, text/event-stream' \
  -d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{
        "protocolVersion":"2025-11-25","capabilities":{},
        "clientInfo":{"name":"curl","version":"1"}}}'

The server card is machine-readable and states the tool counts, the free and premium split, and the protocol versions the server negotiates. Every server on this page publishes one at <url>/.well-known/mcp/server-card.json.

All nineteen endpoints

Every one is Streamable HTTP. Every one takes anonymous calls on its free tools. The premium column is what one $19 license unlocks across all of them.

ServerWhat it doesToolsFreeURL
catalogSearch 138 agent skills and personas by plain-language job106https://mcp.moltlinestudio.com/catalog
codereviewRisk-scan diffs, flag AI-generated-code tells, find secrets75https://mcp.moltlinestudio.com/codereview
governAudit MCP configs and skill files for scope and injection risk86https://mcp.moltlinestudio.com/govern
timeopsDeterministic business-day, overlap and recurrence math53https://mcp.moltlinestudio.com/timeops
dataPaste-your-data analytics: profiling, A/B, correlation, growth74https://mcp.moltlinestudio.com/data
humanizerFind AI-isms with evidence and fingerprint a writing voice53https://mcp.moltlinestudio.com/humanizer
business30 finance, bookkeeping, legal-ops and SMB operations products86https://mcp.moltlinestudio.com/business
creator20 blogging, brand-voice, copywriting and social products86https://mcp.moltlinestudio.com/creator
educator8 curriculum, classroom and exam-prep teaching products75https://mcp.moltlinestudio.com/educator
outbound7 outreach, sequencing, deliverability and CRM products86https://mcp.moltlinestudio.com/outbound
personal20 inbox, calendar, travel, meals and family-logistics products97https://mcp.moltlinestudio.com/personal
research7 research navigation, thesis, note-taking and citation products86https://mcp.moltlinestudio.com/research
skillmd-lintLint a SKILL.md for frontmatter, structure, secrets and size66https://mcp.moltlinestudio.com/skillmd-lint
merchantProcessor fees, charge-to-net and invoice totals63https://mcp.moltlinestudio.com/merchant
shippingDimensional weight, parcel fit, landed cost, freight class64https://mcp.moltlinestudio.com/shipping
shopifyProduct CSV validation, handles, variant matrices, metafields64https://mcp.moltlinestudio.com/shopify
dropshipMargin, lead time, SKU mapping and price-ladder math64https://mcp.moltlinestudio.com/dropship
recallA portable knowledge-graph memory you pass in and get back64https://mcp.moltlinestudio.com/recall
visionImage header probing, bbox conversion, resize and color math64https://mcp.moltlinestudio.com/vision

Counts are generated from the license gate in the running code, not written by hand — a tool counts as free when nothing in its body refuses an unlicensed call. Full descriptions on the servers page.

What we check every morning

A connector that quietly stops working is worse than one that never worked. A pre-flight run hits all 19 endpoints daily and fails loudly.

The handshake

Every server completes initialize, is assigned a session, accepts notifications/initialized, and returns its tool list. 19 of 19, or the run fails.

The browser origin

Claude’s web client sends an Origin header that server-to-server tests never send. We send the same header a browser would and assert it is accepted — and that an unrelated origin is still refused.

The anonymous call

A free tool is called with no headers, no key and no session history. If it ever starts asking for something, the check goes red before a user finds out.

The paywall

A premium tool is called without a license and has to refuse politely. That is how we know the free counts on this page are the real ones.

Questions

The things people ask before they paste a URL into their assistant.

Which Claude plans can add a custom connector?

Anthropic documents custom connectors on the Pro, Max, Team and Enterprise plans. On Team and Enterprise an organization Owner adds it once from Admin settings and it becomes available to the workspace.

Do I need to fill in the OAuth fields under Advanced settings?

No. Leave them empty. There is no account to sign in to, so there is no client ID and no client secret. A connector with no credentials is a supported configuration.

What happens when Claude calls a premium tool without a license?

The tool returns a plain sentence saying it needs a license and where to get one. Nothing errors, nothing hangs, and the free tools on that same server keep working.

Is this listed in Claude's connector directory?

Not yet. The directory is reviewed by Anthropic and is a separate submission. Adding the URL as a custom connector uses the same MCP mechanism and works today.

What data leaves my machine?

Whatever you pass into a tool call, and nothing else. There is no account, so there is nothing to attach a request to. The privacy policy is at moltlinestudio.com/privacy.html.