Build nooq apps with AI

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.

1

Get an API token

2

Configure your AI tool

First, create your token in Step 1 above. Once you do, the commands below will automatically include it.

Claude Code

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"

Cursor

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"

OpenAI Codex CLI

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"
      ]
    }
  }
}
3

Start building

Once configured, just describe what you want. Your AI tool will:

Tip: Always mention that you're building a nooq app or that you want it to run on nooq. This tells the AI to use the nooq tools and follow nooq's conventions.

Try something like:

"Build me a personal bookmarks manager on nooq"
"Create a habit tracker app on nooq with weekly charts"
"Make a simple notes app on nooq with markdown support"