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/cli2. Log in:
ink login3. 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:
| Setting | Value |
|---|---|
| Server name | ink |
| Transport | HTTP |
| URL | https://mcp.ml.ink/ |
| Authorization | Bearer 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.