Connect AI agents to create, edit, and deploy web projects.
@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
| Tool | Description |
|---|---|
list_projects |
List all your projects |
create_project |
Create a new project |
generate_code |
Generate or modify code with AI |
read_file |
Read a file from the project sandbox |
write_file |
Write a file to the project sandbox |
run_command |
Run a shell command in the sandbox |
deploy_project |
Deploy to a live branded URL |
Environment Variables
| Variable | Required | Default | Description |
|---|---|---|---|
AICRE8_API_KEY |
Yes | — | Your API key (starts with ak_live_) |
AICRE8_API_URL |
No | https://aicre8.dev/api/v1 |
API base URL |
API Documentation
Full REST API docs: aicre8.dev/developers
License
MIT
Tools (7)
list_projectsList all your projectscreate_projectCreate a new projectgenerate_codeGenerate or modify code with AIread_fileRead a file from the project sandboxwrite_fileWrite a file to the project sandboxrun_commandRun a shell command in the sandboxdeploy_projectDeploy to a live branded URLEnvironment Variables
AICRE8_API_KEYrequiredYour API key (starts with ak_live_)AICRE8_API_URLAPI base URLConfiguration
{"mcpServers": {"aicre8": {"command": "npx", "args": ["@aicre8/mcp-server"], "env": {"AICRE8_API_KEY": "ak_live_your_key_here"}}}}