Hacker News

Subscribe to Hacker News feed
Hacker News RSS
Updated: 21 min 56 sec ago

Ask HN: Is shipping speed the most important metric?

Wed, 04/16/2025 - 8:51am

Ever since the advent of AI tools in our workflows, it became even more obvious to me how companies (and most developers) brag about how fast they can deliver value.

As a career-switcher, I always considered programming an activity that lies somewhere between craft and mathematics. However, it feels like we lean towards math Olympiad standards when it comes to recognizing and rewarding one's expertise in the industry.

May I ask: Am I disillusioned, out of touch, or am I right? And why is that? I'm not talking just about startups on seed stage because it's really obvious to me how these are companies that have to hit the market ASAP somehow. But I noticed that trend even in corporate environments (at least in Greece), where the fast shipper gets praised and rewarded, and those who take an extra time to handle complexity introduced are not only frowned upon but they're also perceived as negative assets.

Comments URL: https://news.ycombinator.com/item?id=43704847

Points: 1

# Comments: 0

Categories: Hacker News

Ask HN: Built a SaaS API, but struggling with traction – advice?

Wed, 04/16/2025 - 8:51am

Hey HN,

A few months ago, I launched https://pagesnap.co — a simple API service that converts websites or raw HTML into high-quality PDFs using headless Chrome. It works well, it’s polished, and technically it solves a real problem (HTML-to-PDF conversion is messy, especially with Tailwind, dark mode, or JavaScript-heavy pages).

Since launching, I’ve put quite a bit of effort into marketing:

* Wrote blog posts and documentation * Created a YouTube intro video * Answered relevant questions on Reddit, Quora, Google Ads * Built backlinks and directory listings * Created Facebook, X.com accounts to post content

But so far… results have been pretty underwhelming. I’m getting a few signups, and some free trial signups, but very few convert, and traffic is nowhere near what I hoped despite the effort.

I’m wondering if other indie hackers / solo SaaS founders have experienced something similar — and what eventually worked for you? How did you find your first 50–100 paying customers when organic and content marketing wasn’t taking off?

Would also genuinely appreciate feedback on the product or site itself: https://pagesnap.co

Thanks a ton in advance

Comments URL: https://news.ycombinator.com/item?id=43704846

Points: 1

# Comments: 0

Categories: Hacker News

ChatGPT Library

Wed, 04/16/2025 - 8:50am

Article URL: https://chatgpt.com/library

Comments URL: https://news.ycombinator.com/item?id=43704830

Points: 1

# Comments: 0

Categories: Hacker News

Show HN: Open-source load balancer for distributed MCP server architecture

Wed, 04/16/2025 - 8:43am

Like many others, I’ve been hacking on MCP servers lately. The issue I ran into was that running multiple MCP servers behind a unified backend was hard. I needed a way to combine all the tool calls from different MCP servers so the client got a unified view, route requests to the correct server based on the tool call, and maintain session affinity for SSE requests. This led me to build CATIE, which solves the above issues.

CATIE is a lightweight proxy that routes MCP requests to the appropriate backend services based on their content.

Key Features

- Content-Based Routing: Routes requests based on tool call. This allows server operators to use a micro-service architecture, with the user only installing one server. This separation allows server operators to scale tool calls independently.

- Unified Tool Call Response: Combine the tool list response from multiple MCP servers. - Session Stickiness: Maintains client connections to the same backend

- Pattern Matching: Uses regex patterns to route tool requests

- Real-time Monitoring: Simple dashboard to see traffic patterns and performance with built-in Prometheus integration.

- Backend Switching: Change where requests go without client reconfiguration

How It Works

CATIE sits between your clients and your MCP servers. When a request comes in, it:

- Parses the JSON-RPC request to understand what it's trying to do

- Applies your routing rules to determine the appropriate backend

- Forwards the request to the backend

- Maintains session stickiness for ongoing conversations

- Has a built-in UI for monitoring statistics and integrates with Prometheus

CATIE is fully open source under the MIT license. Contributions, feedback, and feature requests are all welcome!

- GitHub: https://github.com/mclenhard/catie-mcp - Docs: https://www.catiemcp.com/docs/

Comments URL: https://news.ycombinator.com/item?id=43704735

Points: 2

# Comments: 0

Categories: Hacker News

Pages