example-workflow.json•1.01 kB
{
"name": "Example Workflow",
"nodes": [
{
"id": "webhook",
"name": "Webhook",
"type": "n8n-nodes-base.webhook",
"typeVersion": 1,
"position": [250, 300],
"parameters": {
"httpMethod": "GET",
"path": "example"
}
},
{
"id": "set-response",
"name": "Set Response",
"type": "n8n-nodes-base.set",
"typeVersion": 3,
"position": [450, 300],
"parameters": {
"values": {
"string": [
{
"name": "message",
"value": "Hello from n8n MCP!"
},
{
"name": "timestamp",
"value": "={{new Date().toISOString()}}"
}
]
}
}
}
],
"connections": {
"Webhook": {
"main": [
[
{
"node": "Set Response",
"type": "main",
"index": 0
}
]
]
}
},
"active": false,
"settings": {}
}