1. Conduid
  2. Developer Tools
  3. MCP Server Generator
MCP server · Developer Tools

MCP Server Generator

Generate Model Context Protocol tools from a Drizzle schema, one module per table, so a language model is told each column's real bounds before it writes a row rather than after the database refuses one.

Unclaimed last commit a year ago arktypecodegendrizzle-ormorpcvalibotzod
55Fair

Scored 21 hours ago · breakdown

About MCP Server Generator

MCP Server Generator is an MCP server published by SerhatUzbas in the Developer Tools category: generate Model Context Protocol tools from a Drizzle schema, one module per table, so a language model is told each column's real bounds before it writes a row rather than after the database refuses one. It has been installed 0 times through Conduid.

The repository has 108 stars and 3 forks, with the last commit a year ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Tools (9)

analyzeServerDependenciesIdentify required npm packages

Takes no parameters.

createMcpServerCreate a new server

Takes no parameters.

getClaudeConfigView current Claude Desktop configuration

Takes no parameters.

getServerContentView the code of an existing server

Takes no parameters.

installServerDependenciesInstall required packages

Takes no parameters.

listServersList all available servers

Takes no parameters.

runServerDirectlyChecks if any error appears when running

Takes no parameters.

updateClaudeConfigUpdate Claude Desktop configuration

Takes no parameters.

updateMcpServerUpdate an existing server

Takes no parameters.

Install

Install
npx mcp-server-generator
Claude Code
claude mcp add generator -- npx -y @drzl/generator-mcp
npx
npx -y @drzl/generator-mcp

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about MCP Server Generator

Powered by Claude · Grounded in docs

I know everything about MCP Server Generator. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

README

MCP Server Generator

A tool for creating and managing Model Context Protocol (MCP) servers for Claude Desktop.

Overview

The MCP Server Creator helps you create, manage, and register custom MCP servers with Claude Desktop. This tool provides an interface for:

  • Creating new MCP servers
  • Updating existing servers
  • Registering servers with Claude Desktop

Getting Started

Prerequisites

Installation

  1. Clone this repository:

    git clone https://github.com/SerhatUzbas/mcp-server-generator.git
    cd mcprotocol
    
  2. Install dependencies (only first installation):

    npm install
    
  3. Register the creator server with Claude Desktop:

  • Macos:

    open ~/Library/"Application Support"/Claude/claude_desktop_config.json
    
  • Windows (Command Prompt):

    start %APPDATA%\Claude\claude_desktop_config.json
    
  • Or from Claude Desktop: Settings > Developer > Edit Config

example:

{
  "mcpServers": {
    "mcp-server-generator": {
      "command": "node",
      "args": ["/Users/username/Documents/GitHub/mcprotocol/creator-server.js"]
    }
  }
}

Note for Windows users: Remember to use backslashes for file paths and escape them properly in your JSON configuration. Example:

{
  "mcpServers": {
    "mcp-server-generator": {
      "command": "node",
      "args": ["C:\\Users\\username\\Documents\\GitHub\\mcprotocol\\creator-server.js"]
    }
  }
}

Using the MCP Server Creator

Once registered, you can use the MCP Server Creator through Claude Desktop:

  1. Open Claude Desktop
  2. Select resources and prompts from choose an integration dropdown
  3. Ask Claude to create or manage your MCP servers

Creating a New Server

Ask Claude to create a server for your specific needs:

Create an simple MCP server that integrates with PostgreSQL to provide database operations and query capabilities.

Claude will (probably):

  1. Check the server list if it exist
  2. Generate the server code
  3. Save it to the servers directory
  4. Register it with Claude Desktop
  5. Identify and install required dependencies

Available Tools

The MCP Server Creator provides several tools for managing your servers:

  • listServers - List all available servers
  • getServerContent - View the code of an existing server
  • createMcpServer - Create a new server
  • updateMcpServer - Update an existing server
  • analyzeServerDependencies - Identify required npm packages
  • installServerDependencies - Install required packages
  • getClaudeConfig - View current Claude Desktop configuration
  • updateClaudeConfig - Update Claude Desktop configuration
  • runServerDirectly - Checks if any error appears when running

Troubleshooting

Server Not Appearing in Claude

  • Verify the server was registered correctly in the Claude Desktop config
  • Check for any JavaScript syntax errors in your server code
  • Restart Claude Desktop after registering new servers

Dependency Issues

If dependencies aren't installing correctly:

  • Try installing them manually: npm install [package-name]
  • Check for compatibility issues between packages
  • Ensure your Node.js version is compatible with the packages

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

README mirrored from the source repository 21 hours ago. The original is authoritative.

Questions

About MCP Server Generator

How do I install MCP Server Generator?

Run npx mcp-server-generator, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is MCP Server Generator safe to use with an AI agent?

Its trust score is 55 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is MCP Server Generator still maintained?

The last commit was a year ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.