Skip to main content
Glama
DrBalls

n8n MCP Server

by DrBalls

n8n_create_project

Create a new project in n8n to organize workflows and credentials by providing a project name.

Instructions

Create a new project for organizing workflows and credentials.

Args:

  • name (string): Project name

Returns: The created project.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesProject name

Implementation Reference

  • The registration and handler implementation for the n8n_create_project tool.
      server.registerTool(
        'n8n_create_project',
        {
          title: 'Create n8n Project',
          description: `Create a new project for organizing workflows and credentials.
    
    Args:
      - name (string): Project name
    
    Returns:
      The created project.`,
          inputSchema: CreateProjectSchema,
          annotations: {
            readOnlyHint: false,
            destructiveHint: false,
            idempotentHint: false,
            openWorldHint: false
          }
        },
        async (params: z.infer<typeof CreateProjectSchema>) => {
          const project = await post<N8nProject>('/projects', params);
          
          return {
            content: [{ type: 'text', text: `✅ Project created!\n\n${formatProject(project)}` }],
            structuredContent: project
          };
        }
      );

Latest Blog Posts

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/DrBalls/n8n-mcp-server-v2'

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