Buildez MCP Server
OfficialIntegrates with Windsurf (by Codeium) to generate websites from descriptions through Buildez.ai.
Allows AI agents to create complete websites using Buildez.ai through GitHub Copilot's MCP support.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Buildez MCP ServerBuild a website for my bakery, Sweet Treats"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Buildez MCP Server
Build complete websites using AI through any MCP-compatible tool.
What is this?
This MCP server connects AI assistants to Buildez.ai, allowing you to create full websites just by describing what you want.
Example:
"Build me a website for Tony's Pizzeria - a family Italian restaurant in Brooklyn with online ordering"
And it will create a complete, live website for you.
Related MCP server: WordPress MCP Server
Supported Tools
Tool | Status |
✅ Supported | |
✅ Supported | |
✅ Supported | |
✅ Supported | |
✅ Supported | |
✅ Supported |
Installation
Step 1: Install Node.js (Required)
Windows
Go to nodejs.org/en/download
Click the "Windows Installer (.msi)" button
Run the downloaded file
Click Next → Next → Next → Install
Restart your computer (or at least close and reopen Command Prompt)
Mac
brew install nodeOr download from nodejs.org
Linux
sudo apt install nodejs npmStep 2: Install Buildez MCP
Open Command Prompt (Windows) or Terminal (Mac/Linux) and run:
npm install -g buildez-mcpWindows tip: Press Win + R, type cmd, press Enter to open Command Prompt.
Step 3: Verify Installation
buildez-mcp --helpIf you see output (not an error), it's installed correctly.
Setup by Tool
VS Code (GitHub Copilot)
VS Code now supports MCP servers with GitHub Copilot.
Option 1: User Settings (All Projects)
Open VS Code
Press
Ctrl+Shift+P(Windows/Linux) orCmd+Shift+P(Mac)Type "Preferences: Open User Settings (JSON)" and press Enter
Add this to your settings:
{
"mcp": {
"servers": {
"buildez": {
"command": "npx",
"args": ["buildez-mcp"],
"env": {
"BUILDEZ_API_URL": "https://buildez.ai"
}
}
}
}
}Option 2: Workspace Settings (Single Project)
Create a file .vscode/mcp.json in your project:
{
"servers": {
"buildez": {
"command": "npx",
"args": ["buildez-mcp"],
"env": {
"BUILDEZ_API_URL": "https://buildez.ai"
}
}
}
}Restart VS Code
Open Copilot Chat and ask: "Build a website for my coffee shop"
Note: Requires GitHub Copilot subscription and VS Code 1.99+
Cursor IDE
Windows
Edit file: C:\Users\YOUR_USERNAME\.cursor\mcp.json
{
"mcpServers": {
"buildez": {
"command": "npx",
"args": ["buildez-mcp"],
"env": {
"BUILDEZ_API_URL": "https://buildez.ai"
}
}
}
}Mac / Linux
Edit file: ~/.cursor/mcp.json
{
"mcpServers": {
"buildez": {
"command": "npx",
"args": ["buildez-mcp"],
"env": {
"BUILDEZ_API_URL": "https://buildez.ai"
}
}
}
}Then restart Cursor.
Claude Desktop
Windows
Edit file: C:\Users\YOUR_USERNAME\AppData\Roaming\Claude\claude_desktop_config.json
{
"mcpServers": {
"buildez": {
"command": "npx",
"args": ["buildez-mcp"],
"env": {
"BUILDEZ_API_URL": "https://buildez.ai"
}
}
}
}Mac
Edit file: ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"buildez": {
"command": "npx",
"args": ["buildez-mcp"],
"env": {
"BUILDEZ_API_URL": "https://buildez.ai"
}
}
}
}Then restart Claude Desktop.
Claude Code (CLI)
Claude Code has built-in MCP support. Just run this command:
claude mcp add buildez-mcp -- npx buildez-mcpVerify it was added:
claude mcp listTo use it, just start Claude Code and ask:
"Build a website for my coffee shop called Bean Dreams"Cline (VS Code Extension)
Install Cline extension in VS Code
Open Cline settings
Go to MCP Servers section
Add:
{
"buildez": {
"command": "npx",
"args": ["buildez-mcp"],
"env": {
"BUILDEZ_API_URL": "https://buildez.ai"
}
}
}Windsurf
Edit your Windsurf MCP config and add:
{
"mcpServers": {
"buildez": {
"command": "npx",
"args": ["buildez-mcp"],
"env": {
"BUILDEZ_API_URL": "https://buildez.ai"
}
}
}
}Usage
After setup, just ask the AI to build a website:
Examples:
"Build a website for a coffee shop called Morning Brew in Seattle"
"Create a portfolio website for a photographer named Sarah"
"Build an e-commerce site for a jewelry store"
"Make a website for a law firm specializing in family law"
The AI will:
Analyze your requirements
Select the best components (170+ available)
Generate custom content for your business
Deploy the website
Give you the live URL
Available Tool
Tool | Description |
| Create a complete website from a business name and description |
Example Output
✅ Website "Tony's Pizzeria" created successfully!
Live URL: https://webid.is/tonys-pizzeria-x7k2m9
Editor: https://buildez.ai/editor/tonys-pizzeria-x7k2m9
Components used:
- Hero section with restaurant branding
- Menu display
- Contact information
- Online ordering
- Testimonials
- Footer with location mapTroubleshooting
Windows: "npm is not recognized"
Node.js is not installed or not in PATH
Reinstall Node.js from nodejs.org/en/download
Make sure to restart Command Prompt after installing
Windows: "buildez-mcp is not recognized"
Run
npm install -g buildez-mcpagainTry using full path:
%APPDATA%\npm\buildez-mcp
MCP shows "Error" or red dot
Restart your IDE/app
Check that BUILDEZ_API_URL is set to
https://buildez.ai
Website not generating
Check internet connection
Try a simpler description first
Links
Website: buildez.ai
Documentation: buildez.ai/docs
Support: support@buildez.ai
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/buildezai/buildez-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server