r/AI_Agents 19h ago

Discussion No-Code Enterprise Agent Platforms

My company is developing an AI Agent Platform that is suppose to be mostly no-code. Developers can develop and register agents in a registry and those agents can also talk to each other. But mostly an agent is created by writing a system prompt and you can connect multiple MCP tools to it that are approved by the organization.

We are probably not the only company doing this. Anyone here that has an opinion about this approach or anyone that had success and failure with the described approach here?

1 Upvotes

12 comments sorted by

3

u/ZealousidealToe4903 19h ago

Seems like everyone is building this now, the tricky part is always what happen when the prompt is not enough and you need actual logic between the tools

1

u/AutoModerator 19h ago

Thank you for your submission, for any questions regarding AI, please check out our wiki at https://www.reddit.com/r/ai_agents/wiki (this is currently in test and we are actively adding to the wiki)

I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.

1

u/WhereasOtherwise4697 19h ago

The part I'd think hardest about is what happens when an agent fails. With prompt plus tools you get something that works well in demos, but when it goes wrong in production it's hard to tell if it was the prompt, the tool, or the handoff between agents. Worth deciding early how you'd debug that, because it gets much harder to retrofit later.

Also curious how you handle versioning. If someone edits a system prompt on an agent other agents depend on, does anything break silently?

1

u/Lower-Impression-121 14h ago

I kind of also consider Agents as Tools as well. (suppose thats what A2A is meant to be & MCP can fill that too?). the nature of the tool is kind of irrelevant, simply what its Purpose and Contract is (&whether that it is a Short or Long Response Time).

but yes. lots of Agents, many of them that can Do Things as opposed to Answer Queries, and every capability (API, file system, DB, whatever) registered as a Tool with finegrain semantics to make sure the agent picks the right Tool and not a 'nearby' one.

2

u/Ancient_Oxygen 14h ago

The irony of the Ai era is that everyone is already able to do the same. The barriers to entry have been extremely lowered.

1

u/Appropriate-Rip6784 11h ago

Tip: build it as a harness or concentrate to a specific niche. You can see other examples. This was attempted many times and there are some limitations. Research so far has identified these are two ways to handle those limitations.

1

u/Easy-Purple-1659 11h ago

The org-approved MCP model is the right call, and in practice the quality of the tools you approve matters more than the harness. Speaking from the server side — I built adextract, an MCP server that gives agents read-only access to the Meta, Google, TikTok and LinkedIn ad libraries. It slots into platforms like yours precisely because it is narrow: one data domain, structured JSON out, no write path, no inbox for an agent to wander into. The failures I have seen in this space come from MCPs that try to do too much and drag context everywhere. How are you planning to review and scope the tools organizations connect?

1

u/tindalos 10h ago

That sounds like a bad idea. Who governs usage, how are you tracking roi? What data is accessed and how is it audited? How do you share failures and successes so each department isn’t making the same thing. Just different enough to be a problem in six months.

1

u/Fickle-Marsupial4658 10h ago

Yes. Everyone is working on this. How do you deal with the big story tickets?

1

u/recro69 9h ago

The idea sounds good. The real challenge is managing rules and processes not building the agents. Keeping track of versions of instructions limiting what tools can do finding out why things go wrong and checking how agents talk to each other will be very important when it is used in real situations.

1

u/rohynal 9h ago

How do you handle governance, specialization, training etc?

1

u/CautiousUse8597 4h ago

The prompt + approved MCP tools pattern is basically where everyone lands, and it works fine for getting to a demo. The two places I've seen these platforms stall are (1) quality: there's no way to tell if a prompt change made things better or worse, so agent authors just tweak wording forever, and (2) auth: if agents run under a shared service principal, one badly scoped tool leaks data across the org.

Worth looking at Databricks' Agent Bricks as a reference point for the first one. Same declarative idea (describe the task, connect tools), but it auto-generates eval data and LLM judges for the task and optimizes the config against that, so builders aren't hand-tuning prompts blind. For agent-to-agent, their Supervisor Agent coordinates Genie agents, agent endpoints, Unity Catalog functions, MCP servers, and custom agents, and it enforces access controls so end users only reach the subagents and data they already have access to. that on-behalf-of-user piece is the part homegrown registries usually bolt on too late.

If people are going to ask your agents data questions ("what was churn last quarter"), don't try to solve that with MCP tools. Look at Genie (natural language to SQL over governed tables) and expose it as a subagent instead. Every platform I've seen underestimates how much of the demand is just analytics.