n8n-nodes-a2a-protocol
Version:
Agent2Agent (A2A) Protocol nodes for n8n - Enable agent interoperability, communication, and MCP integration
86 lines (85 loc) • 2.48 kB
JSON
{
"name": "n8n-nodes-a2a-protocol",
"version": "1.1.1",
"description": "Agent2Agent (A2A) Protocol nodes for n8n - Enable agent interoperability, communication, and MCP integration",
"keywords": [
"n8n-community-node-package",
"n8n-nodes",
"a2a",
"agent2agent",
"ai-agents",
"agent-interoperability",
"google-cloud",
"agent-communication",
"mcp",
"model-context-protocol",
"mcp-client",
"tool-integration"
],
"license": "MIT",
"homepage": "https://github.com/Vinoth-Paulraj-HID/n8n-nodes-a2a-protocol",
"author": {
"name": "Vinoth-Paulraj-HID",
"email": "vinoth.paulraj@hidglobal.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vinoth-Paulraj-HID/n8n-nodes-a2a-protocol.git"
},
"bugs": {
"url": "https://github.com/Vinoth-Paulraj-HID/n8n-nodes-a2a-protocol/issues"
},
"engines": {
"node": ">=20.10"
},
"packageManager": "npm@10.2.3",
"main": "index.js",
"scripts": {
"build": "tsc && gulp build:icons",
"dev": "tsc --watch",
"format": "prettier nodes credentials --write",
"lint": "eslint nodes credentials package.json",
"lintfix": "eslint nodes credentials package.json --fix",
"prepublishOnly": "npm run build",
"validate-ports": "node validate-a2a-ports.js",
"check-ports": "npm run validate-ports"
},
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/A2AApi.credentials.js"
],
"nodes": [
"dist/nodes/A2AAgentRegistry/A2AAgentRegistry.node.js",
"dist/nodes/A2AClientAgent/A2AClientAgent.node.js",
"dist/nodes/A2ARemoteAgent/A2ARemoteAgent.node.js",
"dist/nodes/A2ACallback/A2ACallback.node.js",
"dist/nodes/A2AClientTool/A2AClientTool.node.js"
]
},
"dependencies": {
"axios": "^1.6.0",
"express": "^4.18.2",
"node-fetch": "^3.3.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.10.0",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^8.35.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.56.0",
"eslint-plugin-n8n-nodes-base": "^1.16.1",
"gulp": "^4.0.2",
"n8n-workflow": "^1.2.0",
"prettier": "^2.7.1",
"typescript": "^5.5.3"
},
"peerDependencies": {
"n8n-workflow": "*"
}
}