Agents

Other Clients

Connect any agent to Ink

Any agent that can run terminal commands or supports the Model Context Protocol can connect to Ink.

Install the Ink CLI and any agent with terminal access can use it directly.

1. Install the CLI:

npm install -g @mldotink/cli

2. Log in:

ink login

3. Deploy — ask your agent to deploy using the CLI:

Prompt

Deploy this app to Ink using the ink CLI

See the CLI Reference for all available commands.

HTTP configuration

Use the following settings:

SettingValue
Server nameink
TransportHTTP
URLhttps://mcp.ml.ink/
AuthorizationBearer YOUR_API_KEY

Generic JSON config

Most MCP clients accept a JSON configuration:

{
  "mcpServers": {
    "ink": {
      "type": "http",
      "url": "https://mcp.ml.ink/",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

Replace YOUR_API_KEY with your agent key from the Ink dashboard.

On this page