MCP Builder
MCP Builder is a Python-based server that installs and configures other MCP servers for integration with MCP clients like Claude Desktop.
Install MCP servers from package repositories (PyPI or npm packages) using
install_repo_mcp_serverInstall MCP servers from local directories using
install_local_mcp_serverfor locally cloned codeConfigure installed servers with custom environment variables and command-line arguments
Automatically detect server type (Python or Node.js) during installation
Cross-platform compatibility supporting Windows, macOS, and Linux
Client integration by automatically modifying Claude Desktop's configuration file to register installed servers
Supports installing MCP servers directly from GitHub repositories like playwright-mcp
Installs and configures Node.js-based MCP servers, supporting npm packages as MCP server sources
Enables installation of MCP servers from npm packages
Enables installation of MCP servers from PyPI packages
Installs and configures Python-based MCP servers, supporting PyPI packages as MCP server sources
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@MCP Builderinstall the GitHub MCP server from npm"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mcp-builder
A Python-based MCP server to install other MCP servers.
The purpose of this server is to provide a complete, user-friendly, and cross-platform way to install and configure MCP servers.
TODO
Support for more MCP Clients (e.g. Cursor, Windsurf, ...)
Support for more MCP server types and sources (e.g., Node.js, Java, etc.)
Support recovery mechanism for failed installations
...
Features
Package Repository Installation: Install MCP servers from PyPI or npm packages
Local Installation: Install MCP servers from local directories
Configuration Management: Configure environment variables and arguments for installed servers
Automatic Detection: Automatically detect the type of MCP server (Node.js or Python)
Cross-Platform Support: Works on Windows, macOS, and Linux
Related MCP server: MCP Server Deepdive
Requirements
Python 3.10 or higher
pip (for Python packages)
Node.js and npm (optional, for JavaScript packages)
Installation
Install from Source
git clone https://github.com/xd3an/mcp-builder.git
cd mcp-builder
pip install -e .Usage
Running Directly
After installation, you can run the MCP Builder directly:
# Using the entry point
mcpbuilder
# Or as a module
python -m mcp_builder.serverDevelopment Mode
For development and testing, you can use the MCP CLI tools:
# Install MCP CLI tools
pip install "mcp[cli]"
# Run in development mode
mcp dev path/to/mcp_builder/server.py
# npx @modelcontextprotocol/inspector
npx @modelcontextprotocol/inspector python -m mcp_builder.serverMCP Client Integration
Claude Desktop Integration
To use MCP Builder with Claude Desktop, add it to your claude_desktop_config.json file:
{
"mcpServers": {
"mcp-builder": {
"command": "python",
"args": [
"-m",
"mcp_builder.server"
]
}
}
}The configuration file is located at:
Windows:
%APPDATA%\Claude\claude_desktop_config.jsonmacOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonLinux:
~/.config/Claude/claude_desktop_config.json
Example Commands
Once integrated with Claude Desktop, you can ask Claude to:
read https://github.com/microsoft/playwright-mcp help me install playwright-mcp in my claude config

How It Works
MCP Builder modifies the Claude Desktop configuration file to register MCP servers. It supports:
Node.js Packages: Installs using
npxand configures Claude to use themPython Packages: Configures Claude to use Python modules
Local Repositories: Installs dependencies and configures Claude to use local code
Available Tools
2 toolsinstall_local_mcp_serverC
Install an MCP server from a local directory.
Args:
path: The path to the MCP server code cloned on your computer
args: The arguments to pass along
env: The environment variables to set, delimited by =
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | ||
| args | No | ||
| env | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions installing from a local directory but fails to describe critical behaviors like whether this is a destructive operation, what permissions are needed, how errors are handled, or what the expected outcome is. This leaves significant gaps for an agent to understand the tool's behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately sized and front-loaded, starting with a clear purpose statement followed by a structured parameter list. It avoids unnecessary verbosity, though the parameter descriptions could be slightly more informative without sacrificing conciseness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity of installing an MCP server, no annotations, no output schema, and minimal parameter details, the description is incomplete. It doesn't cover expected outputs, error conditions, dependencies, or behavioral nuances, making it inadequate for an agent to use the tool confidently in varied contexts.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description includes an 'Args' section that lists and briefly describes the three parameters (path, args, env), adding meaning beyond the input schema, which has 0% description coverage. However, the explanations are minimal (e.g., 'The arguments to pass along' without specifying format or examples), providing only basic semantic value without fully compensating for the schema's lack of detail.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Install') and resource ('an MCP server from a local directory'), making the purpose specific and understandable. However, it doesn't explicitly differentiate from its sibling tool 'install_repo_mcp_server', which likely installs from a repository rather than a local directory.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives, such as the sibling tool 'install_repo_mcp_server'. It lacks context about prerequisites, typical use cases, or any exclusions, leaving the agent without clear usage direction.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
install_repo_mcp_serverC
Install an MCP server via pip or npm.
Args:
name: The package name of the MCP server
args: The arguments to pass along
env: The environment variables to set, delimited by =
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| args | No | ||
| env | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden but provides minimal behavioral context. It mentions installation but doesn't disclose important traits like whether this requires admin privileges, what happens if installation fails, whether it modifies system state permanently, or what the expected output is. The description doesn't contradict annotations since none exist.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately concise with a clear purpose statement followed by parameter explanations. The structure is front-loaded with the main functionality. However, the parameter explanations could be more efficiently integrated rather than listed as separate bullet points.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool that performs system installation with 3 parameters, no annotations, and no output schema, the description is insufficient. It doesn't cover important context like prerequisites, error handling, success criteria, or what happens after installation. The agent lacks critical information to use this tool effectively.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage, the description adds value by explaining all three parameters: 'name' as package name, 'args' as arguments to pass, and 'env' as environment variables. However, it doesn't provide format details (e.g., how environment variables should be formatted with '=' delimiter), examples, or constraints beyond basic semantics.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'install' and resource 'MCP server', specifying installation via pip or npm. It distinguishes from the sibling tool 'install_local_mcp_server' by implying this is for repository-based installation rather than local, though not explicitly stated.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance on when to use this tool versus alternatives is provided. The existence of sibling tool 'install_local_mcp_server' suggests there are different installation methods, but the description doesn't explain when to choose repository vs local installation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
2 tool updates
- First observed
install_local_mcp_server - First observed
install_repo_mcp_server
TDQS
The two tools have clearly distinct purposes: one installs from a local directory, while the other installs from a package repository via pip or npm. There is no overlap in functionality, making it easy for an agent to choose the correct tool based on the installation source.
Both tools follow a consistent verb_noun pattern with 'install' as the verb and descriptive nouns ('local_mcp_server', 'repo_mcp_server'). The naming is predictable and readable, with no deviations in style or convention.
With only 2 tools, the server feels thin for a 'Builder' purpose, which might imply broader capabilities like configuration, management, or testing of MCP servers. The count is too low for the apparent scope, limiting functionality and potentially causing gaps in agent workflows.
The tool surface is severely incomplete for a 'Builder' domain, as it only covers installation from two sources. Missing are obvious operations like uninstalling, listing installed servers, configuring servers, or building/testing MCP projects, which are essential for comprehensive server management.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Create, deploy, and operate MCP servers directly from your GitHub repositories.
A simple MCP server built with FastMCP and python
A MCP server built for developers enabling Git based project management with project and personal…
Primarily to be used as a template repository for developing MCP servers with FastMCP in Python, P…
Related MCP Servers
- AlicenseBqualityDmaintenanceA server that provides a persistent Python REPL environment through the MCP protocol, allowing execution of Python code, variable management, and package installation.342MIT
- FlicenseBqualityCmaintenanceA Python-based MCP server implementation that can be easily installed via pip or directly from GitHub, providing a simple way to deploy and run MCP server functionality.1-
- FlicenseCqualityDmaintenanceMCP server that enables deployment and management of MCP servers through a simple configuration-based interface.1-
- FlicenseNot gradedqualityDmaintenanceThis repository provides a template for creating MCP servers with Python, including installation instructions and tools for testing with the MCP Inspector.-
Appeared in Searches
- Various MCP (Model Context Protocol) Server Platforms
- A server designed to assist in the creation of MCP servers
- Servers for Cloud Architecture (AWS) and Platform Engineering with Oauth Integration for Documentation Access
- A server that finds and installs other MCP servers
- How to Install MCP Clients and Servers
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/XD3an/mcp-builder'
If you have feedback or need assistance with the MCP directory API, please join our Discord server