Examples

Next.js

Learn how to deploy a Next.js app with Ink MCP using a simple prompt.

Create an Ink account and connect MCP

Make sure you have an Ink account and have connected Ink MCP to your agent. There are two ways to connect:

  • OAuth — authenticate through a browser flow, no keys to manage
  • Token — create an API key at ml.ink/account/api-keys

See Quick Start for full setup instructions.

Verify the connection

Once the MCP server is connected, confirm your agent can reach it by asking it to check.

Prompt

Do you have Ink MCP connected?

Create a Next.js app

Ask your agent to scaffold a new Next.js project. If you already have a Next.js app in the current directory, skip this step and go straight to deploying.

Prompt

Build a Next.js 15 landing page with App Router. Include a hero section, features grid, and a contact form. Use Tailwind CSS.

Deploy with Ink

Tell your agent to deploy. The agent will create a git repository on Ink's internal git (or your connected GitHub), push the code, and call create_service to trigger a build.

Next.js apps run as a server process — Ink auto-detects the framework and uses npm start on port 3000.

Prompt

Deploy with Ink

Tool Call
(
  : 
)
Tool Call
(
  : ,
  : ,
  : ,
  : 
)

Visit your website

Ink returns a live URL once the build completes. Visit it to see your app running in production.

Check logs and metrics (optional)

Ask your agent to pull build logs, runtime logs, or metrics for your deployed service.

Prompt

Check metrics and logs

Tool Call
(
  : "landing-page",
  : ,
  : 
)

That's it — your Next.js app is deployed and live. From here you can add a custom domain, set up environment variables, or explore more examples.

On this page