← Reddit

Has anyone built an agentic system , running vm on cloud and digital ocean?

Reddit · Successful-Mastodon6 · July 5, 2026
Someone is building an agentic system with dev agents, reports, and MCP that integrates with Discord and is designed to push code changes via OTA, build Shopify website code for AR product displays, and manage Amazon ads. The builder encountered a bottleneck in SSH deployment and is seeking collaboration with others developing similar systems.

Detailed Analysis

The Reddit post surfaces a common pain point among developers experimenting with Claude-powered agentic systems: the gap between prototyping API calls and operationalizing a production-grade deployment pipeline. The original poster describes a multi-agent architecture with a Discord front-end serving as the user interface, orchestrating development agents that handle disparate tasks—pushing over-the-air (OTA) code updates to mobile apps, building augmented-reality product display code for a Shopify storefront, and running MCP (Model Context Protocol) agents to manage Amazon advertising campaigns. This is a fairly ambitious stack, spanning e-commerce, AR/VR tooling, and ad-tech automation, all coordinated through conversational agent orchestration rather than traditional dashboards or CI/CD consoles.

The specific bottleneck cited—SSH deployment to virtual machines running on cloud providers and DigitalOcean—reflects a broader infrastructure challenge that agentic AI builders are increasingly encountering as they move from chat-based prototypes to systems that need to execute real-world actions on remote servers. Claude and similar LLMs can generate code, reason about deployment scripts, and even call tools via MCP, but reliably executing SSH sessions, managing credentials securely, handling connection drops, and sequencing multi-step remote operations autonomously remains a nontrivial engineering problem. Unlike simple API calls that return synchronous responses, SSH-based deployment requires persistent session state, error recovery, and often human-in-the-loop verification—areas where agent frameworks are still maturing. The poster's request to connect with "like-minded individuals" signals that off-the-shelf tooling and documentation for this exact use case are still sparse, pushing early adopters toward community-driven troubleshooting rather than established playbooks.

This anecdote is emblematic of a larger trend in the Claude and broader LLM-agent ecosystem: the rapid proliferation of MCP as a standard for connecting models to external tools and data sources, paired with growing ambition to use agents not just for code generation but for full-cycle software operations—provisioning infrastructure, deploying updates, and managing third-party integrations like advertising platforms autonomously. Anthropic's MCP framework has lowered the barrier to connecting Claude to arbitrary systems, but the article underscores that the "last mile" of agentic autonomy—reliable, secure remote execution—still requires significant custom engineering, error handling, and often bespoke middleware between the LLM and the underlying infrastructure.

More broadly, this reflects the current state of agentic AI adoption: enthusiastic hobbyists and small teams are pushing Claude-based systems well beyond simple chatbot use cases into DevOps-adjacent territory, often ahead of mature tooling. The friction described here—needing peer support to solve SSH deployment issues within an otherwise functional multi-agent pipeline—illustrates both the promise and the current limitations of agentic AI: the reasoning and orchestration layer is often further along than the execution and infrastructure layer, creating exactly the kind of bottlenecks this poster is running into. As frameworks around MCP, agent orchestration, and secure remote execution mature, these kinds of ad hoc, forum-based problem-solving efforts are likely to be replaced by more standardized deployment patterns and dedicated tooling built specifically for agentic DevOps workflows.

Read original article →