HarshCasper/localstack-docs-mcp-server
If you are the rightful owner of localstack-docs-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.
An MCP server providing AI assistants with direct access to LocalStack's documentation.
LocalStack Documentation MCP Server
An MCP server providing AI assistants with direct access to LocalStack's documentation. This MCP server allows you to query LocalStack knowledge base, troubleshoot issues, and get configuration guidance through two specialized tools.
Endpoint
Server available at: https://localstack-docs-mcp-server.localstack-cloud.workers.dev/sse
Client Setup
Claude Desktop
Configure Claude Desktop by editing the MCP settings:
- Open Claude Desktop settings
- Navigate to Developer > Edit Config
- Add the following configuration:
{
"mcpServers": {
"localstack-docs": {
"command": "npx",
"args": [
"mcp-remote",
"https://localstack-docs-mcp-server.localstack-cloud.workers.dev/sse"
]
}
}
}
- Restart Claude Desktop
Cursor
To use this MCP server in Cursor:
- Open Cursor settings
- Navigate to MCP & Integrations.
- Click on Add MCP Server and add the following configuration:
{ "mcpServers": { "localstack-docs": { "command": "npx", "args": ["mcp-remote", "https://localstack-docs-mcp-server.localstack-cloud.workers.dev/sse"] } } }
Cloudflare AI Playground
Direct integration with Cloudflare's AI Playground:
- Navigate to https://playground.ai.cloudflare.com/
- Connect to MCP server using:
https://localstack-docs-mcp-server.localstack-cloud.workers.dev/sse - Start using LocalStack tools immediately
Tools
ask_localstack_question
Interactive Q&A tool for LocalStack technical queries.
- Input:
query: Your LocalStack question - Example:
{ "name": "ask_localstack_question", "arguments": { "query": "How do I enable persistent storage for DynamoDB in LocalStack?" } }
search_localstack_sources
Documentation search across LocalStack resources.
- Input:
query: Keywords or topics to search - Example:
{ "name": "search_localstack_sources", "arguments": { "query": "Lambda environment variables" } }
Technical Details
This MCP server connects to LocalStack's knowledge base via Kapa.ai's API infrastructure. The server handles authentication, request formatting, and response processing transparently.
License
This MCP server is licensed under the MIT License.