1. Conduid
  2. Developer Tools
  3. Manager
MCP server · Developer Tools

Manager

A tool to create, build, and manage MCP servers for use with Claude and other MCP clients

Unclaimed last commit a year ago devtools
46Fair

Scored 4 months ago · breakdown

About Manager

Manager is an MCP server published by infinitimeless in the Developer Tools category: a tool to create, build, and manage MCP servers for use with Claude and other MCP clients. It has been installed 0 times through Conduid.

The repository has 12 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.

Install

Install
npx mcp-server-manager

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 Manager

Powered by Claude · Grounded in docs

I know everything about Manager. 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 Manager

A tool to create, build, and manage MCP (Model Context Protocol) servers for use with Claude and other MCP clients.

Features

  • Create new MCP servers with proper scaffolding for TypeScript, Python, or Java
  • Build existing MCP servers from source code
  • Install MCP servers for use with Claude Desktop and other MCP clients
  • Manage MCP server configurations

Installation

Prerequisites

  • Node.js 18 or higher
  • For Python servers: Python 3.10+ and ideally uv package manager
  • For Java servers: Java 17+ and Maven/Gradle

Install using npm

npm install -g mcp-server-manager

Local development

# Clone the repository
git clone https://github.com/infinitimeless/mcp-server-manager.git
cd mcp-server-manager

# Install dependencies
npm install

# Build the project
npm run build

# Run locally
node build/index.js

Using with Claude Desktop

To use the MCP Server Manager with Claude Desktop, add it to your Claude Desktop configuration.

Edit your Claude Desktop config file:

  • MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

Add the following:

{
  "mcpServers": {
    "mcp-server-manager": {
      "command": "node",
      "args": ["/path/to/mcp-server-manager/build/index.js"]
    }
  }
}

Usage

Once installed and configured with Claude, you can use natural language commands like:

  1. Create a new server: "Can you create a new MCP server for me? I'd like a Python server called 'weather-service' in my ~/Projects directory."

  2. Build an existing server: "Please build my MCP server in ~/Projects/weather-service"

  3. Install a server to use with Claude: "Install my weather-service server from ~/Projects/weather-service so I can use it with Claude"

Tool Details

create-server

Creates a new MCP server project with proper scaffolding.

Parameters:

  • name: Name of the MCP server to create
  • language: Programming language to use (typescript, python, or java)
  • directory: Directory where the server should be created

build-server

Builds an existing MCP server from source code.

Parameters:

  • directory: Directory of the MCP server to build

install-server

Installs an MCP server for use with clients like Claude Desktop.

Parameters:

  • directory: Directory of the built MCP server
  • configPath: (Optional) Path to Claude Desktop config

Development

This project is open to contributions. To contribute:

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Submit a pull request

License

MIT License

README mirrored from the source repository 4 months ago. The original is authoritative.

Questions

About Manager

How do I install Manager?

Run npx mcp-server-manager, 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 Manager safe to use with an AI agent?

Its trust score is 46 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 Manager 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.