Home / Companies / Arcade / Blog / August 2026

August 2026 Summaries

17 posts from Arcade

Filter
Month: Year:
Post Summaries Back to Blog
AI agent governance builds on familiar enterprise controls such as identity, permissions, policies, and audit trails, but differs because agents act on behalf of people while accountability remains with the deploying operator or user. Traditional role-based access models can create risk when agents receive standing service credentials or inherit a user’s full access, since an agent’s authority should instead be limited to a specific user, task, resource, and moment in time. The passage argues that governance decisions must occur at runtime, before each tool call, rather than through retrospective access reviews or logs, particularly when agents interact with sensitive systems such as Workday, SAP, and Salesforce. It cites the Air Canada chatbot case as an example of organizations being held responsible for agent-generated actions or statements, and notes that incomplete security approval remains a barrier to broader deployment. Arcade.dev is presented as a runtime enforcement layer intended to connect existing enterprise entitlement systems to agent actions, allowing agents to operate as delegates of named users under narrowly scoped, temporary permissions.
Aug 31, 2026 1,835 words in the original blog post.
AI agent safety requires distinguishing between guardrails, which guide or filter a model’s reasoning and outputs, and governance, which enforces whether an agent may perform consequential actions such as sending payments, deleting records, or disclosing data. The passage argues that guardrails are inherently probabilistic because they rely on models that can be misled by prompt injection, hallucinations, or ambiguous instructions, making them insufficient as the sole protection for agents with real system access. It cites incidents involving Replit’s coding agent deleting a production database, Air Canada’s chatbot inventing a refund policy, and the EchoLeak vulnerability in Microsoft 365 Copilot to illustrate that harmful outcomes can occur without a traditional attacker and cannot be undone through after-the-fact reviews. It proposes placing deterministic authorization, policy, and audit controls at the tool-call or actions-runtime layer, where an agent’s intent becomes an actual transaction and where requests can be allowed or denied before reaching target systems. Guardrails remain useful for controlling tone, format, and behavior, but the recommended approach combines them with runtime governance that treats every potentially unsafe tool action as requiring real-time enforcement.
Aug 31, 2026 1,532 words in the original blog post.
Arcade.dev is presented as a secure actions runtime for connecting Cursor to MCP-enabled services such as Slack, Jira, Linear, Gmail, and Microsoft Word without storing long-lived API keys in local configuration files. It uses an MCP Gateway, OAuth 2.1 and OIDC authentication, vaulted credentials, execution-time authorization based on the intersection of agent and user permissions, and centralized audit logs to reduce credential exposure and prompt-injection risks. The setup involves creating an Arcade account and Gateway, adding its URL to Cursor through a one-click option or the MCP configuration file, and completing browser-based OAuth authentication. The guide contrasts this approach with direct API-key integrations, which it characterizes as less secure, less auditable, and more prone to unreliable tool calls, while also describing sample workflows that create Linear issues from Slack alerts, generate Word briefings from Gmail, and draft Jira-based status reports. It additionally covers connection troubleshooting, the distinction between expired-session 401 errors and insufficient-scope 403 errors, self-hosting options, tool refresh behavior in Cursor, and usage-based pricing.
Aug 29, 2026 2,198 words in the original blog post.
About a month after a major Model Context Protocol (MCP) revision, the author argues that enterprises have broadly accepted MCP as the standard for connecting AI agents to business systems, shifting attention from whether to use it toward how to implement it effectively. The revised specification’s move to stateless servers has simplified scalable deployment by allowing requests to reach any server instance without session stores, while task support enables long-running, non-blocking operations such as migrations, research, and approval-dependent workflows. The author identifies three key areas for future development: remotely distributable agent skills for sharing repeatable organizational workflows, bi-directional communication and triggers that allow external systems to notify or reactivate agents, and strong workload identity that verifies agent and application identities for sensitive actions. Arcade positions its enterprise agent runtime around authorization that evaluates both the user and agent on every action, viewing identity, triggers, and shared skills as central requirements for production-scale agent systems.
Aug 27, 2026 899 words in the original blog post.
Arcade.dev allows organizations to register third-party or internally built remote MCP servers in a centralized control plane, enabling agents to use vendor tools while maintaining governance, authentication separation, and auditability. After an administrator registers a Streamable HTTP-compatible server and discovers its tool catalog, teams can selectively expose tools through MCP gateways that work with the Arcade SDK and clients such as Claude, Cursor, and Copilot. Although an admin credential is used only for discovery, each end user completes authorization individually at runtime, ensuring actions use separate user identities and tokens rather than a shared account. The approach provides a single gateway and authorization model for both Arcade-native and external tools, while current limitations include support only for tools, not MCP prompts, resources, or sampling, and a requirement that remote servers remain reachable from Arcade.
Aug 26, 2026 876 words in the original blog post.
Choosing a TypeScript AI agent framework for Next.js depends primarily on whether the product centers on embedded AI features, full agent systems, graph-based orchestration, or durable background execution. Mastra is presented as a cohesive agent-first framework with integrated workflows, memory, evaluations, observability, persistence, and Next.js support, while Vercel AI SDK is suited to streaming chat, tool calls, structured output, and generative UI within existing App Router applications, including newer durable WorkflowAgent capabilities. LangChain.js and LangGraph.js offer flexible, explicit graph orchestration and alignment with Python-based LangChain workflows, supported by the LangSmith ecosystem for tracing, evaluation, and deployment. Specialized alternatives include Inngest AgentKit for event-driven durable tasks, VoltAgent for observability-focused development, Genkit for Google Cloud and Firebase environments, and the OpenAI Agents SDK for lightweight OpenAI-oriented agents. Short-lived interactions can run in Next.js Node route handlers, but long-running, retryable, scheduled, or approval-based workflows generally require a separate service or durable runtime; Node is recommended over the increasingly deprecated Edge runtime for most agent workloads. The comparison also distinguishes agent frameworks from action runtimes, noting that multi-user agents acting in third-party systems need separate authorization, credential isolation, policy enforcement, and audit mechanisms, which services such as Arcade.dev are designed to provide.
Aug 24, 2026 4,514 words in the original blog post.
Enterprise deployment of Model Context Protocol servers involves three separate functions—hosting server processes, routing protocol traffic, and governing downstream actions—and the text argues that organizations should identify which of these layers remains unresolved in their architecture. It compares purpose-built action runtimes, cloud platforms, Kubernetes environments, API gateways, edge hosting, and hosted catalogs, describing Arcade.dev as focused on centralized per-user authorization, agent-scoped permissions, credential isolation, lifecycle management, and action-level auditing, while AWS, Azure, Google Cloud, OpenShift, Kong, Cloudflare, Prefect Horizon, TrueFoundry, and MintMCP are positioned around differing combinations of infrastructure integration, hosting, routing, developer workflow, or catalog onboarding. Key evaluation criteria include support for cloud, private, on-premises, and air-gapped deployments; OAuth-based authentication; delegated authorization; approval and policy controls; attributable audit records and SIEM export; registry and versioning capabilities; governance for custom servers; and reliable handling of retries and state. The discussion emphasizes that the MCP revision dated 2026-07-28 removes protocol-level sessions and replay behavior, placing responsibility for durable state, idempotency, deduplication, and recovery from interrupted mutating actions on platforms and tool developers.
Aug 20, 2026 5,627 words in the original blog post.
Plugins are separately installed software components that extend host applications through predefined contracts governing capabilities, permissions, and lifecycle, a model used across browsers, content-management systems, developer tools, and marketplaces for decades. In AI agents, the equivalent capability is generally called a tool, while the Model Context Protocol (MCP) provides an open interface enabling an MCP server to work across compliant hosts rather than requiring separate integrations for each platform. The account traces this shift from early browser plugins and later sandboxed extensions to ChatGPT’s 2023 plugin system, which was discontinued in 2024 because of limited discovery, host lock-in, weak authorization, and difficulties presenting raw APIs reliably to models. It describes the 2026 Agent Plugins specification as an emerging cross-platform packaging format for MCP servers and agent skills, supported by several major technology companies and clients. Although open protocols reduce integration complexity, the text argues that production agent deployments still require better tool descriptions and error handling, per-user delegated authorization, credential isolation, allowlisting, centralized governance, and auditable records of each action because agents can act on live enterprise systems autonomously.
Aug 19, 2026 3,093 words in the original blog post.
Arcade.dev has joined NVIDIA’s Open Secure AI Alliance as a founding partner in a coalition of more than 120 companies developing open AI safety and cybersecurity technologies. The company argues that secure enterprise AI depends not only on model capabilities or openness but also on an independent action layer that manages identity, authorization, policy enforcement, token handling, logging, and evaluation whenever agents act in business systems. Drawing on its production runtime for enterprise agents, Arcade highlights per-action authorization tied to user identity and agent scope, removal of standing service-account access, runtime-managed tokens, and OpenTelemetry-based logging to SIEM platforms. It supports open, model-agnostic frameworks and standards, including MCP, to reduce vendor lock-in, maintain portability, and help organizations enforce governance as models and agent technologies evolve.
Aug 19, 2026 673 words in the original blog post.
Pi does not include native MCP support or built-in credential management, so connecting it to external services with local API wrappers can require storing broadly scoped static tokens in configuration files. The guide recommends installing a Pi MCP extension and configuring it to use Arcade.dev as a remote MCP actions runtime, where OAuth-based authorization occurs through browser consent and tokens are stored remotely rather than exposed to Pi or its prompts. It outlines setup steps involving the Pi extension, Arcade CLI, an MCP configuration pointing to Arcade’s HTTPS endpoint, and connection verification within Pi. Arcade is presented as providing hosted tool execution, per-account authorization, persistent action history, and agent-oriented tools for services such as Slack, Jira, Datadog, Gmail, Google Calendar, GitHub, and Linear. Example workflows include converting Slack or Datadog alerts into Jira tickets, producing a morning briefing from unread email and calendar events, and summarizing assigned Linear issues. The guide also addresses common connection and authorization problems, including blocked HTTPS traffic, expired OAuth sessions, insufficient permissions, and the need to complete initial consent interactively before using Pi in non-interactive mode.
Aug 13, 2026 2,562 words in the original blog post.
Arcade.dev has introduced role-based access control to help organizations safely manage access as they scale AI agent deployments beyond small teams. The feature provides three roles: organization admins with full access, project admins who manage specific projects without affecting organization-wide infrastructure, and members who can use assigned tools but cannot alter shared resources. RBAC is intended to prevent accidental disruptions caused by unrestricted administrative access and to align Arcade permissions with common enterprise organizational structures. It governs administration of the Arcade platform, while existing runtime agent authorization continues to determine what agents may do for each action based on user identity and agent scope. Available through the Arcade dashboard, the feature is positioned as a way to support broader, secure agent rollouts without creating a centralized administrative bottleneck.
Aug 13, 2026 542 words in the original blog post.
Arcade.dev is presented as a secure action runtime for connecting Claude Code to external services such as GitHub, Slack, Jira, Google Workspace, and monitoring tools through Model Context Protocol servers without storing raw API tokens in local terminals or configuration files. The setup involves creating an Arcade MCP Gateway, registering it in Claude Code as a remote HTTP server, verifying the connection, and completing OAuth authentication through the MCP panel or command line. The guide argues that this approach reduces risks associated with local token injection, including prompt-injection-based credential exposure, limited auditability, and malformed tool parameters, by vaulting credentials, authorizing actions at execution time, logging activity centrally, and validating agent-facing tool schemas. It also explains user versus local configuration scopes, common configuration and authorization errors, and example workflows such as summarizing GitHub pull requests, converting Slack discussions into Google Docs, and creating Jira issues from flagged Google Sheets rows.
Aug 12, 2026 2,126 words in the original blog post.
Arcade.dev responds to Forbes coverage of its acquisition of Smithery, arguing that the deal reflects growing enterprise demand for MCP-based agent tool catalogs and execution runtimes that can authorize, monitor, and audit agent actions in production. Addressing concerns about vendor lock-in, Arcade says its MCP-compatible tool definitions are open, permissions remain in customers’ existing identity and policy systems, audit data can be exported through OpenTelemetry, and deployments can run in customer VPCs or air-gapped environments. It also describes ToolBench and SkillBench as public, repeatable quality benchmarks whose criteria can be reviewed or challenged by tool developers. On pricing, Arcade says token efficiency and successful execution rates are central to controlling costs when agent workflows increase tool usage, claiming its tools use fewer tokens than typical MCP wrappers and achieve more than a 95% execution success rate.
Aug 12, 2026 1,074 words in the original blog post.
A July 28 revision to the Model Context Protocol (MCP) introduces its largest set of changes since the protocol launched in November 2024, including breaking updates intended to support enterprise-scale deployments rather than primarily local servers. The accompanying guide explains the shift toward stateless operation, improved refresh-token security, and official extensions that increase modularity while creating potential fragmentation challenges. It also provides migration checklists, guidance for handling immediate traffic changes, and technical instructions for clients, harnesses, servers, and gateways adapting to stateless MCP, including opportunities for load balancing and serverless scaling. Arcade is presented as a runtime that supports both protocol versions, allowing organizations to migrate servers and clients gradually while maintaining authorization, security, and governance.
Aug 11, 2026 400 words in the original blog post.
Meta’s newly released 30-billion-parameter Glimmer model is presented as a locally runnable model for agentic tasks such as function calling, coding, and multi-step execution, potentially operating on consumer hardware including Macs and PCs with a single GPU. The commentary argues that because Meta earns roughly 98% of its revenue from advertising rather than AI-model access, open and inexpensive models may support a broader strategy of making agentic capabilities widely available, even if Meta has not stated this as its intent. As model intelligence becomes cheaper and tool calling becomes commonplace, the focus for enterprise AI shifts toward reliable execution, identity management, permissions, policy enforcement, human approval processes, and auditing. Arcade.dev positions its platform as infrastructure for this execution and governance layer, enabling organizations to control what agents can access and do across connected systems.
Aug 10, 2026 702 words in the original blog post.
Arcade.dev has acquired Smithery, a public registry and hosting platform for Model Context Protocol (MCP) servers, and Smithery co-founder Anirudh Kamath will join the Arcade team. The acquisition combines Smithery’s developer-focused approach to discovering and running MCP tools with Arcade’s enterprise emphasis on security, reliability, and governance for AI agents in production. Arcade argues that while MCP adoption and tool creation have accelerated, tool quality and lifecycle management must become greater priorities as enterprises deploy agents at scale. Smithery will continue to offer developers a simple way to find and launch MCP servers, while its integration into Arcade is intended to support more secure, dependable, and manageable agent-tool connections for business use cases.
Aug 05, 2026 507 words in the original blog post.
Arcade.dev has joined the Cisco Duo marketplace as an ecosystem partner, enabling organizations to use their existing Duo identity and access management policies to govern actions performed by AI agents. Arcade acts as an enterprise agent actions runtime, routing each tool call through Cisco Duo for authorization while ensuring agents operate on behalf of authenticated users without exposing credentials to prompts or models. The integration applies Duo-managed identities, groups, roles, scopes, and audit controls to agent activity, while Arcade can add runtime contextual safeguards such as step-up multifactor authentication for sensitive actions. For Duo customers, the arrangement provides a reusable security and enforcement foundation for deploying multiple AI agents under existing access-control and auditing practices.
Aug 04, 2026 438 words in the original blog post.