MCP Hub
Back to servers

AICre8 MCP Server

Enables AI agents to create, modify, and deploy web projects through the AICre8 platform's sandbox environment. It supports project management, code generation, and direct shell command execution for streamlined web development.

glama
Updated
Mar 13, 2026

@aicre8/mcp-server

MCP server for AICre8 — connect AI agents to create, edit, and deploy web projects.

Works with Claude Desktop, Cursor, Claude Code, and any MCP-compatible client.

Setup

1. Get an API Key

Go to aicre8.dev/settings and create an API key in the API Keys section.

2. Configure Your Client

Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (Mac) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "aicre8": {
      "command": "npx",
      "args": ["@aicre8/mcp-server"],
      "env": {
        "AICRE8_API_KEY": "ak_live_your_key_here"
      }
    }
  }
}

Cursor

Add to .cursor/mcp.json in your project or global config:

{
  "mcpServers": {
    "aicre8": {
      "command": "npx",
      "args": ["@aicre8/mcp-server"],
      "env": {
        "AICRE8_API_KEY": "ak_live_your_key_here"
      }
    }
  }
}

Claude Code

claude mcp add aicre8 -- npx @aicre8/mcp-server

Set AICRE8_API_KEY in your environment.

3. Start Using

Once configured, ask your AI agent things like:

  • "List my AICre8 projects"
  • "Create a new project called Coffee Shop"
  • "Build a landing page with a dark theme and hero section"
  • "Deploy the project"

Available Tools

ToolDescription
list_projectsList all your projects
create_projectCreate a new project
generate_codeGenerate or modify code with AI
read_fileRead a file from the project sandbox
write_fileWrite a file to the project sandbox
run_commandRun a shell command in the sandbox
deploy_projectDeploy to a live branded URL

Environment Variables

VariableRequiredDefaultDescription
AICRE8_API_KEYYesYour API key (starts with ak_live_)
AICRE8_API_URLNohttps://aicre8.dev/api/v1API base URL

API Documentation

Full REST API docs: aicre8.dev/developers

License

MIT

Reviews

No reviews yet

Sign in to write a review