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.
Go to aicre8.dev/settings and create an API key in the API Keys section.
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"
}
}
}
}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 mcp add aicre8 -- npx @aicre8/mcp-serverSet AICRE8_API_KEY in your environment.
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"
| 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 |
| 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 |
Full REST API docs: aicre8.dev/developers
MIT