Connect your AI IDE (Antigravity, Cursor, Claude, VS Code) to compile mobile apps using Nativine MCP server.
The Model Context Protocol (MCP) is an open specification that teaches AI assistants (Cursor, Antigravity, Claude Desktop, VS Code, Windsurf) how to interact directly with external developer platforms. Using Nativine's official MCP server, your AI assistant can parse your app requirements, manage build drafts, upload asset icons, and trigger native Android (.apk/.aab) and iOS (.ipa) compilations right from your chat prompt.
To authorize your local AI assistant to interact with your Nativine account:
Cursor - Mac).ntvn_ak_...). Keep this key safe.Add the following block to your local config file at ~/.gemini/config/mcp_config.json:
{
"mcpServers": {
"nativine": {
"command": "node",
"args": [
"/path/to/nativine-mcp/index.js"
],
"env": {
"NATIVINE_API_KEY": "ntvn_ak_your_secret_key_here"
}
}
}
}
nativinestdionpx -y @nativine/mcp@latest (or npx -y @nativine/mcp)NATIVINE_API_KEY=ntvn_ak_your_secret_key_hereAdd Nativine to your claude_desktop_config.json file:
{
"mcpServers": {
"nativine": {
"command": "npx",
"args": ["-y", "@nativine/mcp@latest"],
"env": {
"NATIVINE_API_KEY": "ntvn_ak_your_secret_key_here"
}
}
}
}
Once connected, you can instruct your AI assistant directly in chat:
"Convert my website https://my-store.com into an Android APK with dark theme and bottom navigation."
Your AI assistant will autonomously call Nativine's MCP tools, configure the app draft, compile the build in the queue, and return a downloadable .apk link in chat!