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
npx mcp-server-managerThis 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
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
uvpackage 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:
-
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."
-
Build an existing server: "Please build my MCP server in ~/Projects/weather-service"
-
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 createlanguage: 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 serverconfigPath: (Optional) Path to Claude Desktop config
Development
This project is open to contributions. To contribute:
- Fork the repository
- Create a feature branch
- Make your changes
- Submit a pull request
License
MIT License
README mirrored from the source repository 4 months ago. The original is authoritative.