drio
Open app

MCPWizard

Source

A package to help you create and deploy MCP servers

Catalog onlyCatalog onlySTDIO

Overview

MCPWizard is a command-line interface (CLI) tool designed to assist users in creating and deploying Model Context Protocol (MCP) servers.

To use MCPWizard, install it via npm with the command npm install -g mcpwizard, then utilize various commands to initialize projects, add tools, build, and deploy your MCP servers.

  • Initialize new MCP server projects - Add/manage tools for your MCP server - Build your MCP server for deployment - Generate Claude Desktop configuration files - Inspect MCP servers
  1. Setting up a new MCP server project quickly.
  2. Managing tools and configurations for MCP servers.
  3. Deploying MCP servers efficiently.

Add to your AI client

Use these steps to connect MCPWizard in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcpwizard-yoannarz": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcpwizard-yoannarz"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcpwizard-yoannarz": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcpwizard-yoannarz"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcpwizard-yoannarz": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcpwizard-yoannarz"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcpwizard-yoannarz": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcpwizard-yoannarz"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcpwizard-yoannarz": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcpwizard-yoannarz"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcpwizard-yoannarz": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcpwizard-yoannarz"
      ]
    }
  }
}

FAQ

What programming languages does MCPWizard support?

MCPWizard currently supports TypeScript and Python templates for server projects.

Is there a way to customize the project template?

Yes! You can specify a template when initializing a new project using the `-t` option.

Can I contribute to MCPWizard?

Absolutely! Contributions are welcome, and you can find the structure of the package in the repository.