localstack-docs-mcp-server

HarshCasper/localstack-docs-mcp-server

3.1

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.

Tools
2
Resources
0
Prompts
0

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:

  1. Open Claude Desktop settings
  2. Navigate to Developer > Edit Config
  3. Add the following configuration:
{
  "mcpServers": {
    "localstack-docs": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://localstack-docs-mcp-server.localstack-cloud.workers.dev/sse"
      ]
    }
  }
}
  1. Restart Claude Desktop

Cursor

To use this MCP server in Cursor:

  1. Open Cursor settings
  2. Navigate to MCP & Integrations.
  3. 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:

  1. Navigate to https://playground.ai.cloudflare.com/
  2. Connect to MCP server using: https://localstack-docs-mcp-server.localstack-cloud.workers.dev/sse
  3. 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.