References

MCP Tools Reference

Complete reference for all 20 Ink MCP tools — deploy, observe, and manage production applications through AI agents

Ink exposes 20 MCP tools that give AI agents full control over infrastructure. Your agent can deploy services, provision databases, manage DNS records, read logs, and more — all programmatically through MCP.

Endpoint

https://mcp.ml.ink/mcp

Authentication

All requests require authentication. Two methods are supported:

  • OAuth — automatic for clients that support MCP OAuth (Claude Code, Codex)
  • API KeyAuthorization: Bearer YOUR_API_KEY header

Tool categories

CategoryToolsDescription
Servicescreate_service, list_services, get_service, update_service, delete_serviceDeploy, monitor, and manage applications
Resourcescreate_resource, list_resources, get_resource, delete_resourceProvision and manage databases
Gitcreate_repo, get_git_tokenCreate repositories and get push credentials
Domainsadd_custom_domain, remove_custom_domain, list_delegations, list_dns_records, add_dns_record, delete_dns_recordCustom domains and full DNS management
Identitywhoami, list_projects, list_workspacesAuthentication and project management

Common patterns

Deploy a service

Tool Call
(
  : "my-app",
  : "ink/my-app"
)

Check deployment status and logs

Tool Call
(
  : "my-app",
  : "100",
  : "100"
)

Provision a database

Tool Call
(
  : "my_db",
  : 
)

Assign a custom domain

Tool Call
(
  : "my-app",
  : "app.example.com"
)

On this page