Connect your AI coding tool to nooq and build, deploy, and update apps using natural language. Just describe what you want and your AI assistant handles the rest.
First, create your token in Step 1 above. Once you do, the commands below will automatically include it.
Run this in your terminal:
claude mcp add --transport http --scope user nooq https://nooq.run/mcp --header "Authorization: Bearer YOUR_TOKEN"That's it. Ask Claude to build you an app: "Build me a todo app on nooq"
Add this to your .cursor/mcp.json file (create it if it doesn't exist):
{
"mcpServers": {
"nooq": {
"url": "https://nooq.run/mcp",
"headers": {
"Authorization": "Bearer YOUR_TOKEN"
}
}
}
}Restart Cursor, then ask it to build you an app: "Build me a todo app on nooq"
Codex doesn't support remote MCP servers directly. Use mcp-remote as a bridge. Add this to your codex.json:
{
"mcpServers": {
"nooq": {
"command": "npx",
"args": [
"@anthropic-ai/mcp-remote",
"--header",
"Authorization: Bearer YOUR_TOKEN",
"https://nooq.run/mcp"
]
}
}
}Once configured, just describe what you want. Your AI tool will:
Try something like: