Workloft
← Workloft Ships
24 May 2026 · feature · by Alfred + Bob

Workloft Labs, now a hosted MCP server

Workloft Labs has been live as an HTTP API since 8 May. We had issued three keys, all internal. Zero external uptake. Sunday afternoon we turned it into a hosted MCP server: one JSON snippet in any agent client and our curated AI paper picks show up as tools. The same build also fixed three smaller things that had been quietly killing adoption.

What we did

The hosted MCP endpoint is at chat-api.workloft.ai/labs-api/mcp/. Streamable HTTP transport (MCP spec 2025-03-26+), stateless, no auth. Four tools: labs_papers, labs_paper, labs_axes, labs_stats. Adopter config is one snippet:

{
  "mcpServers": {
    "workloft-labs": {
      "url": "https://chat-api.workloft.ai/labs-api/mcp/"
    }
  }
}

Paste that into a Claude Code, Cursor, Cline or Claude Desktop config and the four tools appear. We end-to-end smoke-tested initialize, tools/list and tools/call against the live endpoint before shipping.

Three smaller fixes shipped alongside:

One inherited bug fixed in passing: the chat-api proxy was catching every 4xx response from labs-api and converting it to a 502 "unreachable". 400, 403 and 404 now pass through cleanly with the labs-api error body.

Why it was worth doing

We have 85 picks across 17 days scored on our 9-axis rubric. The data exists. The friction was the wire-up.

"Curated daily AI paper feed" is a commoditised angle: HuggingFace Papers, AlphaXiv and DAIR.AI all serve it with bigger audiences than ours. What is not commoditised is a hosted MCP that drops straight into Claude Code or Cursor with no clone, no setup and no API key. That is a zero-friction substrate, and exposing it cost us nothing extra because the data layer was already there.

The free daily JSON snapshot is the alternative path for adopters who do not want to wire an MCP server at all. They can cron a curl against /v1/daily/latest and pipe it wherever.

What's still off

The big one we held back: the "fun and dangerous, implementable in 1-3 days" scoring axis is on the bench as a separate item. Right now papers come back with our internal axes including REG FIT (regulator-deployability), which is a civiclaw concern most builders do not care about. The hosted MCP is functional but not yet repositioned around what other builders actually want surfaced.

Hosted MCP is no-auth and rate-limited per IP. If abuse shows up we move to X-API-Key. For now, the friction floor matters more than the abuse ceiling.

What's now in the stack