MCP server
by aws-powertools
AWS Lambda Powertools Documentation Search lets AI quickly find and cache docs for multiple runtimes via a fast TypeScri
Search and retrieve AWS Lambda Powertools documentation across multiple runtimes locally. Helps AI agents quickly find toolkit information and examples.
AWS Lambda Powertools Documentation Search is a community-built MCP server published by aws-powertools that provides AI assistants with tools and capabilities via the Model Context Protocol. AWS Lambda Powertools Documentation Search lets AI quickly find and cache docs for multiple runtimes via a fast TypeScri It is categorized under developer tools. This server exposes 2 tools that AI clients can invoke during conversations and coding sessions.
You can install AWS Lambda Powertools Documentation Search in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
NOASSERTION
AWS Lambda Powertools Documentation Search is released under the NOASSERTION license.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
I recommend AWS Lambda Powertools Documentation Search for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
We wired AWS Lambda Powertools Documentation Search into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
Useful MCP listing: AWS Lambda Powertools Documentation Search is the kind of server we cite when onboarding engineers to host + tool permissions.
AWS Lambda Powertools Documentation Search is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
AWS Lambda Powertools Documentation Search reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
AWS Lambda Powertools Documentation Search is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
According to our notes, AWS Lambda Powertools Documentation Search benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
AWS Lambda Powertools Documentation Search has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
AWS Lambda Powertools Documentation Search has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
AWS Lambda Powertools Documentation Search reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
showing 1-10 of 75
The Powertools for AWS Model Context Protocol (MCP) is an MCP implementation that provides search functionality for the Powertools for AWS Lambda documentation across multiple runtimes. It allows your LLM agents to search for documentation and examples related to the toolkit, helping you to quickly find the information you need to use Powertools for AWS Lambda effectively.
[!WARNING] This project is experimental and under active development. APIs and features may change frequently without notice.
We're actively seeking community feedback and feature suggestions join our Discord or open an issue to share your thoughts.
Most clients that support MCP can use this server out of the box using a configuration similar to the following:
[!NOTE] If you are using an older version of the MCP, make sure to update your configuration to use the new package name
powertools-for-aws-mcp.
{
"mcpServers": {
"powertools": {
"command": "npx",
"args": ["-y", "powertools-for-aws-mcp"]
}
}
}
This setup uses the Node.js package manager to run the MCP server locally and communicate with it using the STDIO interface.
For detailed setup instructions for specific clients, see the configurations below:
See Amazon Q Developer CLI documentation for details.
Add MCP Server using CLI commands:
qchat mcp add --name powertools --command "npx -y powertools-for-aws-mcp"
Manual Configuration:
If you select global scope, the MCP server configuration is stored in ~/.aws/amazonq/mcp.json and available across all your projects. If you select local scope, the configuration is stored in .amazonq/mcp.json within your current project.
~/.aws/amazonq/mcp.json{
"mcpServers": {
"powertools": {
"command": "npx",
"args": ["-y", "powertools-for-aws-mcp"]
}
}
}
</details>
See Kiro Model Context Protocol Documentation for details.
Kiro > MCP Servers+ Add button.kiro_mcp_settings.jsonFor macOS/Linux:
{
"mcpServers": {
"powertools": {
"command": "npx",
"args": ["-y", "powertools-for-aws-mcp"]
}
}
}
For Windows:
{
"mcpServers": {
"powertools": {
"disabled": false,
"timeout": 60,
"type": "stdio",
"command": "npx",
"args": ["-y", "powertools-for-aws-mcp"]
}
}
}
</details>
A. Project Configuration - For tools specific to a project, create a .cursor/mcp.json file in your project directory. - This allows you to define MCP servers that are only available within that specific project.
B. Global Configuration - For tools that you want to use across all projects, create a ~/.cursor/mcp.json file in your home directory. - This makes MCP servers available in all your Cursor workspaces.
.cursor/mcp.json{
"mcpServers": {
"powertools": {
"command": "npx",
"args": ["-y", "powertools-for-aws-mcp"]
}
}
}
Using MCP in Chat: The Composer Agent will automatically use any MCP tools that are listed under Available Tools on the MCP settings page if it determines them to be relevant. To prompt tool usage intentionally, please prompt Cursor to use the desired MCP Server you wish to use. For example, Using the Powertools MCP Server, do...
Tool Approval: By default, when the Agent wants to use an MCP tool, it will display a message asking for your approval. You can use the arrow next to the tool name to expand the message and see what arguments the Agent is calling the tool with.
Access MCP Settings
Add MCP Servers
Manual Configuration
~/.codeium/windsurf/mcp_config.json~/.codeium/windsurf/mcp_config.json{
"mcpServers": {
"powertools": {
"command": "npx",
"args": ["-y", "powertools-for-aws-mcp"]
}
}
}
</details>
Configure MCP servers in VS Code settings or in .vscode/mcp.json (see VS Code MCP docs for more info.):
.vscode/mcp.json{
"mcpServers": {
"powertools": {
"command": "npx",
"args": ["-y", "powertools-for-aws-mcp"]
}
}
}
</details>
Add MCP Server using CLI commands:
claude mcp add powertools
Manual Configuration (Recommended):
You can directly edit the configuration file located at ~/.claude.json. This approach is more flexible and allows you to see all configurations at once.
~/.claude.json{
"mcpServers": {
"powertools": {
"type": "stdio",
"command": "npx",
"args": ["-y", "powertools-for-aws-mcp"]
}
}
}
Restart Claude Code: After editing the config file, restart Claude Code for the changes to take effect.
</details>After cloning the repository, you can set up your development environment by running:
npm ci
npm run setup:hooks
After that you can run tests using npm t or npm run test:unit:coverage for coverage reports.
You can also run the server locally using: npm run dev, this will start an inspector server that lets you interact with the MCP server using a browser UI.
If you want, you can also configure the server to run with Amazon Q, Claude Desktop, or other LLM clients that support the Model Context Protocol (MCP) by using node as command and passing the --experimental-transform-types flag and the path to the src/index.ts file of this project.
For example, with Claude Code, you can add the server by running:
claude mcp add pt-dev node -- --experimental-transform-types /path/to/project/powertools-mcp/src/index.ts
Michael Walmsley at [ServerlessDNA.com](https:/
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.