A Model Context Protocol (MCP) server that integrates with n8n, providing tools for workflow and execution management via the n8n API.
10 lines
199 B
JavaScript
10 lines
199 B
JavaScript
module.exports = {
|
|
presets: [
|
|
['@babel/preset-env', { targets: { node: 'current' } }],
|
|
'@babel/preset-typescript',
|
|
],
|
|
plugins: [
|
|
['@babel/plugin-transform-modules-commonjs']
|
|
]
|
|
};
|