Invite-only.
Connect

n8n

n8n's AI Agent nodes accept MCP servers as tools. Add Dock once and every AI Agent workflow can call create_row, update_row, list_rows, etc. For non-AI workflows, use the HTTP Request node against Dock's REST API.

Client
n8n
Workflow automation. MCP Tool node + HTTP Request for REST.
HTTP JSON-RPC (streamable-http)
Dock MCP
trydock.ai/api/mcp
37 tools · OAuth 2.1 + DCR · Bearer
Auth path
1
Mint a dk_ key in Dock Settings → API keys.
2
Paste it as Authorization: Bearer dk_… in the client config.
3
Client calls Dock MCP directly on every request.

Prerequisites

  • n8n (cloud or self-hosted).
  • A Dock dk_ key.
Node
Add a MCP Client Tool node to your AI Agent.
MCP Client Tool parametersjson
{
  "connectionType": "HTTP Streamable",
  "url": "https://trydock.ai/api/mcp",
  "authentication": {
    "type": "header",
    "headerName": "Authorization",
    "headerValue": "Bearer dk_live_c914f1c6..."
  }
}

Troubleshooting

Symptom
Fix
AI Agent can't discover tools
Make sure the MCP Client Tool node is connected to the AI Agent's ai_tool input, not the main flow.

Related