Mission · Why this matters

Connect n8n to the platform — the line is live

In the Agentowner course you gave your KI-Agent (AI agent) its Token. Today you use that Token yourself for the first time: you connect n8n to LinkYourSkill's MCP access and see with your own eyes what the platform offers your agent there. No AI involved yet — first the line, then the brain.

Lesson 01 · ~8 minutes · Knowledge & practice

What you'll be able to do

You already steer — now you build

From the Agentowner course you know the rule: your KI-Agent acts in your name, and nothing becomes real before you approve it. So far the agent has been finished software to you. In this course you build it yourself — out of n8n building blocks. For that, today we look at the exact spot where every agent touches the platform: the MCP access.

Core idea

The Token you created in the Agentowner course is exactly what your agent identifies itself with at this access point. There is no second secret and no hidden machinery: whoever holds the Token acts as your agent — inside your limits. That's why it stays as secret as a password, in n8n too.

Before you start

Note for Safari & local n8n

If you run n8n locally and use Safari, n8n blocks the sign-in with a message about a "secure cookie". That's an n8n security setting: start n8n with the environment variable N8N_SECURE_COOKIE=false — or use n8n Cloud, where this doesn't occur.

What is the MCP access?

MCP (Model Context Protocol) is the standardized access an AI agent uses to talk to LinkYourSkill. Three things are enough to understand it:

The first connection — without AI

Before any chat model enters the picture, you prove the line is live. In n8n:

  1. Create a new workflow and add the HTTP Request node.
  2. Set Method to POST — the default is GET, and GET won't work here.
  3. As the URL, enter: https://app.linkyourskill.ai/mcp
  4. Enable Send Headers and set the header Accept to application/json, text/event-stream.
  5. Enable Send Body, choose "JSON" as the Body Content Type, and enter: {"jsonrpc":"2.0","method":"tools/list","id":1}
  6. Execute the node — deliberately without signing in yet. You get an error: "Authorization failed - please check your credentials". Good: the platform doesn't know you yet.
  7. Now the Token: set Authentication to Generic Credential TypeBearer Auth, create a new credential, and paste your Token into the Bearer Token field.
  8. Execute the node again. The response starts with event: message — and inside it is the complete tool catalog.

Looks raw — but it's right

n8n shows the response as one long text starting with event: message. That's the MCP access's streaming format, not an error. What matters is what's inside: "tools":[ followed by the Tool list. If you spot search_skillanbieter and prepare_order, your line is officially in business.

If it doesn't work


Your turn

Test yourself — retrieving from memory is what builds real retention.

Knowledge check

What does your agent identify itself with at the MCP access?

LinkYourSkill Designed in the LinkYourSkill design system