A
AWS Lambda
Invoke and manage AWS Lambda functions.
·No reviews yet
Share:
About
Auto-generated
AWS Lambda is a Model Context Protocol server in the Developer Tools category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about AWS Lambda.
- What is the purpose of the AWS Lambda MCP server?
- The AWS Lambda MCP server allows users to invoke and manage AWS Lambda functions directly through the Model Context Protocol. It bridges compatible client applications with AWS Lambda's serverless compute capabilities.
- How do I configure AWS Lambda MCP in a client?
- Configuration varies by client. Typically, you would add a new server by providing the transport (stdio) and any required API key. Consult your client's documentation for specific steps on adding an MCP server.
- Does the AWS Lambda MCP require API keys?
- Yes, this MCP server requires an API key for authentication. This key is used to authorize requests and manage access to your AWS Lambda functions.
- What capabilities does the AWS Lambda MCP offer?
- The AWS Lambda MCP primarily enables invocation and management of AWS Lambda functions. This includes triggering functions and potentially reviewing their status or logs, depending on the specific tools exposed by the MCP.
- Are there any costs associated with using the AWS Lambda MCP?
- Using the AWS Lambda MCP itself does not incur direct costs, as it is a community-provided server. However, you will be charged for the underlying AWS Lambda service usage based on AWS's standard pricing model for function invocations and execution duration.
- What is a key prerequisite for using the AWS Lambda MCP?
- A key prerequisite for using this MCP is an active AWS account with the necessary permissions configured to access and manage Lambda functions. You will also need to generate and provide a valid AWS API key.
Install AWS Lambda
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"aws-lambda": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-aws-lambda"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"aws-lambda": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-aws-lambda"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"aws-lambda": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-aws-lambda"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.