SmartsheetがAWS上にリモートMCPサーバーを構築した方法How Smartsheet built a remote MCP server on AWS
匿名の公開いいねです。記事の保存・お気に入りではなく、Featured、Top 3、重要度、掲載順位には影響しません。仕組みとプライバシーAnonymous public likes are reactions, not saved articles or bookmarks. They do not affect Featured, Top 3, importance, or listing order.How it works and privacy
- SmartsheetはAWSを活用してリモートMCPサーバーを構築し、AIエージェントが外部ツールと安全に連携できる基盤を整備した。
- この実装例はエンタープライズ向けMCP展開の参考事例として重要。
- Smartsheet describes how they built a remote MCP server on AWS to enable AI agents to securely interact with their platform's tools and data.
- The architecture offers a practical enterprise reference for deploying MCP at scale.
要約と収集メタデータをもとに生成した AI 解説本文です。元記事全文の転載・翻訳ではありません。This AI explainer is generated from the summaries and collected metadata, not from a reproduction or translation of the full source article.
SmartsheetがAWS上にリモートMCPサーバーを構築し、その設計と運用の知見をAWSの機械学習ブログで公開した。AIエージェントが企業のツールやデータへ安全にアクセスするための具体的な実装例として、エンタープライズ導入を検討する組織に参考になる内容だ。
MCP(Model Context Protocol)は、Anthropicが2024年に公開した、大規模言語モデルやAIエージェントを外部のツール・データソースへ接続するためのオープンな標準規格である。従来、エージェントに社内システムを操作させるには個別の連携を作り込む必要があったが、MCPはツールの呼び出し方を共通化することで、この接続の手間を減らすことを狙う。OpenAIやGoogleなど主要ベンダーも相次いで対応を表明しており、業界標準として広がりつつある。
MCPサーバーには、利用者の端末上で動く「ローカル型」と、ネットワーク越しに提供される「リモート型」がある。リモート型は、複数ユーザーやチームでの共有、集中的な認証・認可、スケーラビリティの確保がしやすい一方、外部公開に伴うセキュリティ設計がより重要になる。Smartsheetのようにクラウド上のサービスと連携する用途では、リモート型が適していると見られる。
SmartsheetはAWSを活用してリモートMCPサーバーを構築し、AIエージェントが外部ツールと安全に連携できる基盤を整備した。
今回の事例では、AWSの各種マネージドサービスを組み合わせ、エージェントからのリクエストを受け付けるエンドポイント、認証・認可の仕組み、Smartsheetの機能を呼び出すツール群を構成したとされる。Amazon Bedrockを含むAWSの基盤を用いることで、モデルの選択やスケーリング、権限管理を一元的に扱いやすくなる点が利点として挙げられる。
エンタープライズ環境でエージェントを実運用するうえでは、誰がどのデータにアクセスできるかを制御するアクセス管理、監査ログ、通信の暗号化といった要件が欠かせない。今回の公開は、こうした要件を満たしながらMCPを本番規模で展開する際の設計上の勘所を示すものであり、同様の取り組みを進める企業にとって実践的な指針となりそうだ。
Smartsheet, the enterprise work management platform, has published an account of how it built a remote Model Context Protocol (MCP) server on Amazon Web Services, allowing AI agents to interact with its platform's tools and data in a governed, secure way. The write-up matters because MCP has quickly become a de facto interface layer between large language models and external systems, and concrete enterprise deployments that address authentication, scaling, and operational concerns are still relatively scarce. Smartsheet's design is positioned as a practical reference for organizations attempting to move MCP from local experiments to production.
The Model Context Protocol is an open standard, originally introduced by Anthropic in late 2024, that defines how AI applications discover and call external tools, retrieve resources, and pass structured context to a model. Early adoption centered on local MCP servers that run on a developer's machine and communicate over standard input and output, which is convenient for prototyping but poorly suited to multi-user, cloud-based products. A remote MCP server, by contrast, is hosted and reachable over the network, typically using HTTP-based transports such as streamable HTTP or server-sent events. This shift introduces the same requirements any internet-facing service faces: identity, authorization, network security, observability, and horizontal scaling.
According to the account, Smartsheet's implementation wraps its existing platform capabilities—actions such as reading sheets, updating rows, or querying data—as MCP tools that an agent can invoke. Rather than exposing internal APIs directly, the MCP server acts as a controlled façade that translates agent requests into authenticated calls against Smartsheet services. This separation appears intended to keep the agent-facing contract stable while preserving existing access controls and business logic on the backend.
On the AWS side, the architecture reflects patterns common to serverless and container-based API services. A managed entry point, likely fronted by Amazon API Gateway or an application load balancer, handles inbound MCP traffic, while compute is served by AWS Lambda or containers running on Amazon ECS or AWS Fargate depending on session and latency needs. Authentication and authorization are central to the design: remote MCP increasingly relies on OAuth 2.0 flows so that an agent acts on behalf of a specific user with scoped permissions, and services such as Amazon Cognito or an enterprise identity provider are well suited to issuing and validating those tokens. The result is that every tool call can be tied back to a real principal, which is essential for enterprise governance and auditing.
Smartsheet describes how they built a remote MCP server on AWS to enable AI agents to securely interact with their platform's tools and data.
The blog situates the work within the broader Amazon Bedrock ecosystem, which AWS has been building out to support agentic applications. Amazon Bedrock provides access to foundation models, while newer offerings around Bedrock Agents and the recently introduced Bedrock AgentCore aim to give developers managed building blocks for memory, tool use, gateways, and runtime hosting. A remote MCP server complements this by standardizing how those agents reach a specific vendor's tools, meaning the same Smartsheet integration can, in principle, be consumed by agents built on Bedrock or on other frameworks that speak MCP.
Several practical concerns receive attention that are often glossed over in demos. These include managing state across a session when the underlying compute is stateless, controlling which tools are exposed to which callers, rate limiting and cost management, and emitting logs and metrics through services like Amazon CloudWatch for monitoring. Security hardening—least-privilege IAM roles, input validation, and guarding against tool misuse or prompt-driven abuse—also features as a prerequisite for exposing capabilities to autonomous agents.
The context here is a rapidly forming market. Since MCP's release, model providers, developer-tool vendors, and cloud platforms have moved to support it, and remote hosting is widely viewed as the step that makes the protocol viable for software-as-a-service companies. Smartsheet's contribution is less a novel protocol advance than a documented, opinionated blueprint showing how the pieces fit together on one cloud. Readers evaluating similar projects should treat specifics as one company's choices rather than prescriptive requirements, since MCP tooling and AWS's agent services are still evolving. Even so, the example illustrates how an established SaaS provider can expose its functionality to AI agents while retaining the identity, security, and operational controls that enterprise adoption demands.
本ページの本文と要約は AI による自動生成です。日本語版と英語版は言語ごとに独立して生成されるため、表現や詳しさが異なる場合があります。正確性は元記事 (aws.amazon.com) をご確認ください。The body and summaries are AI-generated independently for each language, so wording and detail may differ. Verify accuracy at the original source (aws.amazon.com).