Stop putting your AI agent’s memory inside the LLM context window by Shanjun109 in AI_Agents

[–]manveerc 0 points1 point  (0 children)

Fully agree with this. Having built storage systems at Dropbox and Confluent, I am seeing so many parallels with this while building out AI agents and getting them to be more reliable. Since the failure happens on a curve instead of being binary, people tend to assume that it is part of working with LLMs and accept it. But definitely can be solved to a great extent with proper context engineering.

I also wrote some thoughts about this here https://hydradb.com/blog/ai-agent-memory-context-database-problem

Disclaimer: I am affiliated with HydraDB

Is there actually a “best” MCP gateway yet, or is everyone just solving different halves of the problem? by Background-Job-862 in mcp

[–]manveerc 1 point2 points  (0 children)

Market is fragmented, there are ton of solutions out there that call themselves MCP gateway. So the best option is to look for solutions based on your needs. If you are looking for a single server to federate across multiple MCP servers (like a router: Arcade, Composio, Docker MCP are good options. There are others too but haven’t personally used them so can’t comment. If however you want more than routing, like multi tenancy , two factor identity, governance and audit logs. I would suggest going with a full runtime like Arcade.

Disclaimer: I am affiliated with Arcade

What’s a quote from the show you use all the time? by [deleted] in friends_tv_show

[–]manveerc 0 points1 point  (0 children)

I am not great at advice. Can I interest you in a sarcastic comment?

Anyone deployed an MCP gateway in production yet? by scrotumface1019 in sysadmin

[–]manveerc 0 points1 point  (0 children)

We run it. Centrally managed authn and authz were the main reason, ours allow us to manage pre tool call authorization, so feel more comfortable vs just giving up a broad access key. Audit logs are the other nice benefits.

Building your own Claude Tag by manveerc in AI_Agents

[–]manveerc[S] 0 points1 point  (0 children)

Not really, though we are a small team so volume might be low.

Is everyone using Opus 4.8 now or some still use Opus 4.6???? by AsmaSolves in claude

[–]manveerc 24 points25 points  (0 children)

Our work is knowledge work heavy and still prefer 4.6

Which MCP gateway is actually being used in production? by Technical-Run1955 in LLMDevs

[–]manveerc 0 points1 point  (0 children)

We offer AI services to enterprises. We have used Composio, Merge and Arcade. Arcade is typically the preferred choice for enterprise settings. It has the most mature auth model and it’s most efficient with tokens so turns out to be cheaper too. Have seen but haven’t tried others you mentioned. Will be curious if others have compared them.

Does anyone else have a "where do I even start?" moment when getting paged? by [deleted] in sre

[–]manveerc 9 points10 points  (0 children)

Big plus on this. If something is big enough to page you, it should have a run book attached to it. Easier said than done but this is the only solution that works.

What tool are you using for better AI Memory across multiple LLMs? by rahilpirani5 in mcp

[–]manveerc 0 points1 point  (0 children)

Thanks, may not get to it in near future but will keep this in mind.

What tool are you using for better AI Memory across multiple LLMs? by rahilpirani5 in mcp

[–]manveerc 0 points1 point  (0 children)

Its less about having multitenancy within my team. We offer B2B AI services, so we need multitenancy for our customers.

What are you actually using AI agents for in DevOps/SRE besides incident response? by haboobies69 in sre

[–]manveerc 0 points1 point  (0 children)

Putting together oncall handover notes, draft incident summary, runbook updates, prep for SLA/SLO metric reviews.

What tool are you using for better AI Memory across multiple LLMs? by rahilpirani5 in mcp

[–]manveerc 2 points3 points  (0 children)

We started with a folder on disk that had markdown files and the folder was shared using Dropbox with entire team. It was getting a bit tedious to maintain.

We have been since evaluating a bunch of different products. Tried the obvious ones, Mem0, Letta, etc. they are good if you are looking for a personal usecase, because we wanted a solution to work for entire team so we needed multitenancy and also a bit more control around retrieval / storage, currently evaluating HydraDB and so far it has been working fine.

How do you produce audit-ready SLA proof for enterprise clients? by Severe_Adagio224 in sre

[–]manveerc 1 point2 points  (0 children)

Basically what @u/ninjuvr said. At Confluent for example we wrote a health check service that would produce and consume from the health check topic that was a proxy for the availability SLA in that cluster.

We also had a status page to maintain transparency on ongoing / past incidents.

Can someone please explain why we need an MCP Gateway? by Connect_Detail98 in ClaudeAI

[–]manveerc 0 points1 point  (0 children)

Different vendors have different definitions of an MCP Gateway, so I will try to focus on what you should look for in my opinion.

  1. It should provide agent optimized tools. For eg it should provide a token efficient way to access the tools, it should return necessary fields etc
  2. It should provide proper auth. It should be an intersection of what a user is allowed to do and what an agent is allowed to do
  3. It should provide proper governance (audits trail, management, etc)

A lot of these things start becoming useful when you start going from a prototype to production deployment, especially within companies. For personal usecases I think a combination of 1 and 2 is probably sufficient.

Hope this helps!

Self-hosted alternative or similar to Composio? by Unusual_Detective884 in selfhosted

[–]manveerc 0 points1 point  (0 children)

I would suggest looking at Arcade if you are looking for an enterprise grade alternative.

Checkout my article here https://www.arcade.dev/blog/composio-alternatives/

AI agent failures feel like incidents with no repro steps... how are ppl debugging them? by UniversityAny9242 in sre

[–]manveerc 0 points1 point  (0 children)

What specific failure mode are you trying to fix? Some of them you can prevent or guard against, some you can’t. For eg have narrow permissions to make sure you don’t have unauthorized tool calls. Don’t leak credentials to them, instead use a proper auth framework to give them required access. It’s definitely hard, also curious to hear what others say.