17 points sukit 15 hours ago 29 comments
If you’re using MCP in production, what are you using it for? What advantages have you found over a normal API or direct tool integration or just CLI?
igor_nast 14 hours ago | parent
Read more about mcp tools/resources/prompts.
latchkey 1 hour ago | parent
DANmode 1 hour ago | parent
This makes it a little more interesting to me, knowing those results.
It definitely underlines what we already know about the specific weaknesses of LLMs replies/results.
latchkey 1 hour ago | parent
bigstrat2003 22 minutes ago | parent
latchkey 14 minutes ago | parent
how about you?
muzani 13 hours ago | parent
It searches to make sure it isn't a duplicate, writes up the ticket, then submits it.
Because it's a production tool, we want the cheapest possible one without it being too inaccurate. If you used a API etc, you'd end up building what's effectively a MCP-like adapter on top of it anyway so it could communicate in natural language instead of dealing with JSON and such.
Linear's MCP is also very clean and well designed, probably one of their core advantages over, say, Jira. I wouldn't know what the API looks like because the MCP works great.
InfiniteLoup 7 hours ago | parent
I was under the impression that Linear's MCP server code isn't public. How do you know that it's well-designed beyond following spec[1][2]?
[1] https://linear.app/docs/mcp [2] https://modelcontextprotocol.io/specification/2026-07-28
mrubon 4 hours ago | parent
ntlm1686 1 hour ago | parent
boltguo 1 hour ago | parent
caudena 1 hour ago | parent
We have received very good feedback from clients across the enterprise and consumer segments, they really like it.
JohnHaugeland 1 hour ago | parent
reilly3000 1 hour ago | parent
earthdeity 1 hour ago | parent
agentdev001 46 minutes ago | parent
By what metric? I would expect that a thin API client (with readable code) is generally going to out-perform a tool-surface which you don't have the ability to manage/edit.
Our_Benefactors 30 minutes ago | parent
jadar 8 minutes ago | parent
mootothemax 48 minutes ago | parent
Getting things like this to work well, for me, often boils down to finding out the things I don't know that I don't know in as little time as possible. I worked with Claude to create a basic debugging front-end as part of that - for my own use, inspecting the data, looking for patterns - when, largely on a whim, I asked Claude to create an MCP interface on top: last run status, what's looking good, whats not, where are the coverage gaps in the individual data points.
And I added the MVP to Claude and would check in regularly to ask how things were going.
And then - I'd ask for some nuance about why something doesn't look quite right. Or what happened to councils in general last night? And - out of nowhere, not being prompted or asked - Claude would query the MCP alongside looking at the code. Immediate production-grade insight while I'm debugging from the comfort of my chair.
And I thought "Oh."
And "this is really quite good," because the key detail is, I think, if an MCP is good and works well, and relevant to what you're doing every day at that point in time, it's yet another addition to your toolbox.
And that got me thinking about how I can do the same for my 9-5 users.
Motheki 24 minutes ago | parent
ma2kx 7 minutes ago | parent
I wont advertise any commercial mcp I use but to give an example for a well designed and useful mcp server I could name the nixos mcp. Its useful because it bundles all the nix resources to one endpoint which is more efficient than web search and gives you better control over the sources.
https://github.com/utensils/mcp-nixos
Another one would be this filesystem mcp which is in my opinion to prefer over direct cli access. Of course this depends also on your general sandbox strategy but if you just use a generic docker image there are still many potentially dangerous binaries available and such an mcp can restrict the models capabilities.
https://github.com/modelcontextprotocol/servers/tree/main/sr...
And of course there are many service provider offering their mcp with its own llm / agent behind e.g. most web search provider. In this case you most likely already use an mcp without noticing it.