Ask HN: Who is using MCP in production?
101–110 of 222 posts
Re: Ask HN: Who is using MCP in production?
#102"Why is my site showing an error", "Deploy this project" etc are the key flows, and users have been building on top of them. It's a nice link between dev & prod, and a great debugging assistant. It's been very well received so far.
Implementation was pretty straightforward (tools mapped to our API) with appropriate guardrails for destructive actions.
Re: Ask HN: Who is using MCP in production?
#103I recently started using it as a way to make my own custom software available to regular ChatGPT and Claude, both of which support MCP if you dig around deep enough. Here's my TIL: https://til.simonwillison.net/llms/mcp-in-claude-and-chatgpt
I've developed and deployed my own self hosted (on cloudflare / workerd) tool here https://github.com/TAJD/projektor and the key part was to be able to add it as a custom mcp server
Re: Ask HN: Who is using MCP in production?
#104Re: Ask HN: Who is using MCP in production?
#105We're using MCP for virtually all our SaaS and infra providers (CRM, ATS, banking and accounting, Notion, Linear, all dev tools and hosting platforms) it's become a hard requirement in our buy bechmark. No MCP = NOGO
The advantages are:
- baked-in auth: no need to configure anything, it just works with our employees accounts
- one click install with Codex Plugins and Claude Connectors
Re: Ask HN: Who is using MCP in production?
#106Don't think it would be that useful for non-tech users.
Re: Ask HN: Who is using MCP in production?
#107MCP is useful because it has instructions to Claude (or the agent of your choice) that tell it how and when to manage the graph. Integrating with Stackography is a one-line operation:
claude mcp add --transport http stackography https://app.stackography.com/mcp --header "Authorization: Bearer stk_...
Now when Claude builds me something new, it knows to update Stackography.invite link: https://stackography.com/invite/8J22NXZSFT
Re: Ask HN: Who is using MCP in production?
#108It was also pretty handy for importing existing documentation from obscure providers without having to build an integration for each of them.
We also added WebMCP [2] for agents to consume our public documentation/help center, but we haven't seen it used yet.
An API would work for all of these cases too, but since customers are using it in their AI tools anyway, MCP is just simpler for them.
[1] https://www.happysupport.ai/en [2] https://developer.chrome.com/docs/ai/webmcp
Re: Ask HN: Who is using MCP in production?
#109Re: Ask HN: Who is using MCP in production?
#110MCPs are diminishing in value a bit, because AI Agents are getting smarter about using API/CLIs. For example, I use gh cli via Claude instead of their MCP, because I already had cli setup, so no need to use MCP. MCPs can potentially have great value if they cross multiple sources and combine results. For example at work we use an in-house MCP for log/metrics search across five different (legacy) systems. It finds cor…
They do exactly what I want and how I want it. They expose just the information and the features I want the LLM to have. And just like in your case, it combines multiple sources of information into 1 response.