惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园_首页
IT之家
IT之家
博客园 - Franky
Stack Overflow Blog
Stack Overflow Blog
宝玉的分享
宝玉的分享
Recent Announcements
Recent Announcements
Engineering at Meta
Engineering at Meta
S
SegmentFault 最新的问题
V
Visual Studio Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI
H
Help Net Security
V
V2EX
H
Hackread – Cybersecurity News, Data Breaches, AI and More
量子位
博客园 - 叶小钗
J
Java Code Geeks
博客园 - 【当耐特】
月光博客
月光博客
爱范儿
爱范儿
人人都是产品经理
人人都是产品经理
酷 壳 – CoolShell
酷 壳 – CoolShell
小众软件
小众软件

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
AI Is Bringing Mashups Back · Mark Wolfe's Blog
Mark Wolfe · 2026-06-14 · via Hacker News - Newest: "AI"

2026-06-12 4 min · 793 words


A mashup is a term that became popular in the 2010s for applications that combined two or more data sources into a single user interface. Recently, I have seen a steady stream of AI-generated side projects, small apps, slide decks, and useful tools showing up on social media, often built by people who have never tried this before. With the advent of ChatGPT and Claude , it has never been easier to integrate disparate data and build something useful.

These mashups are nothing new, but the barrier to entry is much lower, and the scale of what is possible has changed as AI models and tools improve.

I have also seen these mashups at work, which is fantastic because it gives more people the ability to build tools and explore problems without waiting for software engineering teams.

This is useful for a few reasons:

  • provides more value from internal data sources
  • includes visualisations that highlight trends or patterns
  • requires minimal programming skills

What is new about this?

The key differentiator is the scale and complexity of these mashups. With the help of tools like Claude Code , Codex , and Cursor , people can build functional web or mobile applications.

This matters for a few reasons:

  1. It is easier than ever to integrate disparate services using APIs.
  2. Agents can respond to queries and follow up with users.
  3. Integrating authentication or data storage is easier than ever.
  4. The growth of agent skills has unlocked even more capabilities, allowing people to package and share repeatable processes.

Overall, this has led to a Cambrian explosion of mashups, as a wave of new builders publish and share their projects.

How will this affect existing SaaS providers?

After chatting with my peers at events such as the AI Engineer conference in Melbourne , it is clear that people with domain knowledge and a clear problem to solve are building mashups that automate day to day tasks and provide better operational reporting.

Businesses are building their own portals, combining feeds of data from multiple platforms with tools such as openclaw to act as the nerve centre for their business. These portals combine APIs, Model Context Protocol (MCP) servers, messaging, and agents to drive day to day operational tasks and provide integrated reporting that would be difficult for any one platform to deliver.

For example, a team might combine CRM data, email notifications from an online store, and supplier invoices into a small internal portal that shows business health and triggers follow-up actions through openclaw.

As a side effect of this, SaaS providers are seeing:

  1. Less traffic to their user interfaces, with people using them mainly when configuring new features or diagnosing more complex issues.
  2. Widespread use of MCP, which provides a more accessible interface for agents.
  3. More API traffic from customers.

I think it is important to understand that the people building these mashups are often just looking to solve their own business problems in ways that are specific to their business.

How can platforms better support mashups?

If platforms want to support this new wave of mashups, then composability needs to be a priority.

Some areas to focus on are:

  • Stable documented APIs, with versioning, predictable schemas, useful errors, and clear deprecation windows.
  • Solid authentication for delegated access, including standardised OAuth/OIDC flows with scoped permissions that make sense to users and developers.
  • Fine-grained permissions, because a mashup might only need read access to one dataset, one workspace, or one resource type.
  • Security controls that protect customers as their mashups evolve, including audit logs, policy enforcement, token expiry, and clear visibility into connected tools.
  • Webhooks and event streams, with support for replay, signing, delivery logs, and retry behaviour so integrations do not need to rely on polling.
  • Reasonable rate limits, which should be visible, documented, and returned in headers.
  • Examples that compose multiple services and show real integration patterns: sync jobs, event-driven workflows, import/export, embedded views, and permission handling.

The most successful platforms will make integration easy by providing stable primitives, clear boundaries, and well-documented capabilities.

Summary

Mashups have seen a resurgence because AI tools make it much easier for anyone to combine data, APIs, and user interfaces without waiting for a full software delivery process.

Key points:

  • Mashups are not new, but the barrier to entry is much lower, and the scale of what is possible has changed as AI models and tools improve.
  • More people can now build useful internal tools from existing data sources.
  • SaaS providers should expect more API and MCP usage, and less reliance on their default user interfaces.
  • Good security controls help keep customers safe while these mashups evolve from experiments into operational tools.
  • Platforms that invest in composability, stable APIs, delegated authentication, webhooks, and good examples will be easier to build on.