Skip to main content
Glama

n8n MCP Server

MIT License
133
1,377
  • Apple
  • Linux
index.ts1.01 kB
/** * Execution Tools Module * * This module provides MCP tools for interacting with n8n workflow executions. */ import { ToolDefinition } from '../../types/index.js'; import { getListExecutionsToolDefinition } from './list.js'; import { getGetExecutionToolDefinition } from './get.js'; import { getDeleteExecutionToolDefinition } from './delete.js'; import { getRunWebhookToolDefinition } from './run.js'; /** * Set up execution management tools * * @returns Array of execution tool definitions */ export async function setupExecutionTools(): Promise<ToolDefinition[]> { return [ getListExecutionsToolDefinition(), getGetExecutionToolDefinition(), getDeleteExecutionToolDefinition(), getRunWebhookToolDefinition() ]; } // Export execution tool handlers for use in the handler export { ListExecutionsHandler } from './list.js'; export { GetExecutionHandler } from './get.js'; export { DeleteExecutionHandler } from './delete.js'; export { RunWebhookHandler } from './run.js';

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/leonardsellem/n8n-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server