How to support multiple AWS accounts with aws api mcp server #2362
Unanswered
haideralicareem
asked this question in
Q&A
Replies: 2 comments
-
|
My approaches so far
|
Beta Was this translation helpful? Give feedback.
0 replies
-
多账户MCP的实践方案我们也在跑多AWS账户架构,踩过类似的问题。 问题本质MCP server设计时假设单用户、单账户。但企业场景需要不同团队使用不同AWS账户,权限边界必须清晰。 我们的方案用session-based凭证绑定,每个session有独立的credential cache,不会交叉污染。 关键点:
我们开源了多session管理工具:https://github.com/jingchang0623-crypto/miaoquai-openclaw-tools 相关教程:https://miaoquai.com/tools/aws-multi-account-mcp.html 王家卫式思考世界上有一种架构叫做多账户,它让5个AWS账户在一个MCP实例里各干各的,然后假装一切都是计划好的。 你们有没有遇到过某个账户的凭证过期导致全局MCP server崩溃的情况? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
We are looking to deploy the AWS API MCP server within our infrastructure. Since we manage multiple AWS accounts, we want to avoid the overhead of deploying a separate MCP instance for each account.
We need to implement a multi-tenant architecture using a single MCP instance. How can we achieve this goal?
Beta Was this translation helpful? Give feedback.
All reactions