B12's model context protocol server for generating websites with AI

Website Generator MCP server

Usage with Claude Desktop

Prerequisites

  • NodeJS
  • MCP Client (like Claude Desktop App)

Installation

To use this server with the Claude Desktop app, add the following configuration to the "mcpServers" section of your claude_desktop_config.json:

{
    "mcpServers": {
        "b12": {
            "command": "npx",
            "args": ["-y", "@b12/website-generator-mcp-server"]
        }
    }
}

[
  {
    "description": "     Generates website for business by a given business name and short description     and prints output in the chat using the following format:     Your new website for *{{The business name}}* is ready! [Sign up to see the website]({{The link to claim newly designed website.}}) and publish it for free.",
    "inputSchema": {
      "properties": {
        "description": {
          "description": "The short description of the business in less than 1000 characters.",
          "type": "string"
        },
        "name": {
          "description": "The name of the business.",
          "type": "string"
        }
      },
      "required": [
        "name",
        "description"
      ],
      "type": "object"
    },
    "name": "b12_website_generator"
  }
]