MCP Configurator Server
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 Configurator Servershow my current config"
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 Configurator Server
A Model Context Protocol (MCP) server that provides tools to manage, edit, backup, and validate Claude Desktop and other client JSON configurations.
This application is built with the official @modelcontextprotocol/sdk and zod for argument schema validation, enabling client LLMs (like Claude or ChatGPT) to programmatically read and modify their own configuration and environment setups.
Folder Structure
mcp-configurator/
├── lib/
│ ├── backup.js # Handles backup creation, listing, and restores
│ ├── config.js # Handles JSON loading, syntax validation, and updates
│ ├── validator.js # Checks system path command executable existence
│ └── utils.js # Filepath resolvers and cross-platform defaults
├── backups/ # Stores configuration backup files (.bak)
├── package.json # Project metadata and dependencies (type: module)
├── server.js # Server entry point running StdioServerTransport
└── README.md # DocumentationRelated MCP server: Python MCP Custom Server
Installation
Install Dependencies: Open a terminal in the project directory and run:
npm install
Running the Server
Since it uses Stdio transport, the server is meant to be spawned by an MCP host (such as Claude Desktop or Cursor). You can run it manually to check for syntax or launch issues:
npm startNote: This command will run and listen on stdin/stdout. You will see MCP Configurator server running on stdio outputted to stderr to avoid polluting the JSON-RPC channel.
Integration Setup
1. Claude Desktop Configuration
To add this configurator server to Claude Desktop on Windows, open your %APPDATA%\Claude\claude_desktop_config.json and add the mcp-configurator to your mcpServers list:
{
"mcpServers": {
"mcp-configurator": {
"command": "node",
"args": [
"C:/Desktop/my workspace/work/server.js"
]
}
}
}Replace C:/Desktop/my workspace/work/server.js with the actual absolute path to where you saved this project.
2. Cursor or other Local IDEs
For Cursor or VS Code, configure a new stdio-based MCP client with:
Command:
nodeArguments:
C:/Desktop/my workspace/work/server.js
Tool Descriptions
The server registers the following tools:
get_config
Reads a configuration JSON file.
Input:
path(string, optional): Custom absolute path to the configuration JSON file. If omitted, defaults to the current system's Claude Desktop config file path.
Output:
The full JSON config payload.
save_config
Saves configuration JSON after automatically creating a timestamped backup of the current state.
Input:
path(string, required): Absolute path to the file to overwrite.config(object, required): The new JSON configuration object.
Output:
Success message with the name of the backup created.
list_backups
Lists all available configuration backups under the backups/ workspace directory.
Input: None.
Output:
Formatted list of all files detailing filename, backup date, and file size.
restore_backup
Reverts the target configuration file using a selected backup file. Creates a new backup of the current state before overwriting as a safety measure.
Input:
filename(string, required): Filename of the backup (e.g.claude_desktop_config.json.bak-2026-07-08T11-04-05-123Z).path(string, optional): Custom absolute path to restore into. Defaults to the active configuration path.
Output:
Confirmation message of successful restoration.
validate_command
Spawns standard shell diagnostic tools (where on Windows, which on macOS/Linux) or queries paths to confirm if an executable exists on the host machine. Helpful for verifying if custom MCP server commands (e.g. npx, python, git) are executable.
Input:
command(string, required): The executable binary name or absolute path to check.
Output:
JSON object indicating success status, resolved PATH location, and descriptive message.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/Dheeraj32903/mcpservers'
If you have feedback or need assistance with the MCP directory API, please join our Discord server