AWS Resource MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@AWS Resource MCPlist my Lambda functions"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
AWS Resource MCP
Servidor MCP local, desarrollado en Python, para consultar recursos reales de una cuenta de AWS en modo de solo lectura.
Estado
La Fase 2 está completada. El proyecto incluye un servidor MCP mínimo y una capa Python independiente que consulta un inventario AWS de solo lectura mediante Boto3. El inventario todavía no está expuesto como tool MCP.
Alcance previsto
Transporte MCP local mediante
stdio.Región principal:
eu-west-1.Consultas de AWS exclusivamente de lectura y bajo mínimo privilegio.
Tools previstas:
listar_recursos_aws()yrevisar_free_tier().Sin Cost Explorer, despliegue en AWS ni CD.
Desarrollo
El proyecto se gestiona con uv y Python 3.12 o posterior.
Instalar dependencias
uv syncEjecutar el servidor
uv run aws-resource-mcpPara diagnóstico también puede ejecutarse como módulo:
uv run python -m aws_resource_mcp.serverEl servidor utiliza stdio: espera que un cliente MCP intercambie mensajes por la entrada y salida estándar. Puede abrirse con MCP Inspector mediante las herramientas incluidas en el SDK:
uv run mcp dev src/aws_resource_mcp/server.pyEjecutar los tests
uv run pytestEjecutar el inventario AWS
Antes del diagnóstico real, comprueba qué identidad resolverá la configuración local:
aws sts get-caller-identityDespués, ejecuta el inventario en la región predeterminada eu-west-1:
uv run python -m aws_resource_mcp.aws.inventoryLa región y el perfil compartido son opcionales:
uv run python -m aws_resource_mcp.aws.inventory --region eu-central-1 --profile exampleNo se guardan claves en el proyecto. Boto3 usa su cadena estándar de resolución de credenciales; si se indica AWS_PROFILE o --profile, solo se selecciona un perfil que ya debe existir fuera del repositorio.
Tool health_check
health_check() no recibe parámetros ni usa red, credenciales o AWS. Devuelve una respuesta estable con el estado del servidor, su nombre y un mensaje de diagnóstico.
El servidor MCP continúa exponiendo únicamente health_check. La capa AWS se integrará con MCP en la Fase 3.
Inventario AWS
Boto3 es el SDK oficial de AWS para Python. La capa de inventario utiliza:
STS
GetCallerIdentitypara identificar la cuenta y la identidad efectiva.Lambda
ListFunctions, mediante paginador, para obtener metadatos de funciones sin descargar código, leer variables ni invocarlas.S3
ListAllMyBucketsyGetBucketLocationpara obtener nombres, fechas de creación y regiones, sin listar objetos ni contenido.
La ausencia de credenciales o la imposibilidad de identificar la cuenta es un error global. Un fallo de Lambda, S3 o de la región de un bucket es parcial: se conservan los demás datos y el problema aparece en errors.
Los permisos de lectura previstos son sts:GetCallerIdentity, lambda:ListFunctions, s3:ListAllMyBuckets y s3:GetBucketLocation. La política IAM mínima se formalizará en la Fase 5.
Documentación
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/herrerogusano/aws-resource-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server