Release v0.1.1 (What’s new?).

Documentation Status https://github.com/MacHu-GWU/claude_desktop_config-project/actions/workflows/main.yml/badge.svg https://codecov.io/gh/MacHu-GWU/claude_desktop_config-project/branch/main/graph/badge.svg https://img.shields.io/pypi/v/claude-desktop-config.svg https://img.shields.io/pypi/l/claude-desktop-config.svg https://img.shields.io/pypi/pyversions/claude-desktop-config.svg https://img.shields.io/badge/✍️_Release_History!--None.svg?style=social&logo=github https://img.shields.io/badge/⭐_Star_me_on_GitHub!--None.svg?style=social&logo=github
https://img.shields.io/badge/Link-API-blue.svg https://img.shields.io/badge/Link-Install-blue.svg https://img.shields.io/badge/Link-GitHub-blue.svg https://img.shields.io/badge/Link-Submit_Issue-blue.svg https://img.shields.io/badge/Link-Request_Feature-blue.svg https://img.shields.io/badge/Link-Download-blue.svg

Welcome to claude_desktop_config Documentation

https://claude-desktop-config.readthedocs.io/en/latest/_static/claude_desktop_config-logo.png

claude_desktop_config is a Python library for programmatically managing Claude Desktop’s MCP (Model Context Protocol) server configurations. It provides a simple, Pythonic interface to add, update, and remove MCP servers in the claude_desktop_config.json file without manually editing JSON. The library handles platform-specific configuration paths automatically and ensures safe, atomic updates to maintain configuration integrity.

Usage Examples

Add or Update an MCP Server

from claude_desktop_config.api import ClaudeDesktopConfig

# Create config instance (auto-detects platform-specific path)
config = ClaudeDesktopConfig()

# Add a new MCP server
config.put_mcp_server(
    name="my-knowledge-base",
    settings={
        "command": "npx",
        "args": ["-y", "@modelcontextprotocol/server-memory"]
    }
)

Remove an MCP Server

# Remove a server (idempotent - no error if doesn't exist)
config.del_mcp_server("my-knowledge-base")

Work with Custom Config Path

from pathlib import Path

# Use a custom configuration file path
config = ClaudeDesktopConfig(path=Path("/custom/path/config.json"))

# Read current configuration
current_config = config.read()
print(current_config)

Manage Multiple Servers

# Add multiple MCP servers
servers = {
    "filesystem": {
        "command": "npx",
        "args": ["-y", "@modelcontextprotocol/server-filesystem", "/home/user/documents"]
    },
    "github": {
        "command": "npx",
        "args": ["-y", "@modelcontextprotocol/server-github"]
    }
}

for name, settings in servers.items():
    config.put_mcp_server(name, settings)

Install

claude_desktop_config is released on PyPI, so all you need is to:

$ pip install claude-desktop-config

To upgrade to latest version:

$ pip install --upgrade claude-desktop-config

Table of Content

About the Author

(\ (\
( -.-)o
o_(")(")

Sanhe Hu is a seasoned software engineer with a deep passion for Python development since 2010. As an author and maintainer of 150+ open-source Python projects, with over 15 million monthly downloads, I bring a wealth of experience to the table. As a Senior Solution Architect and Subject Matter Expert in AI, Data, Amazon Web Services, Cloud Engineering, DevOps, I thrive on helping clients with platform design, enterprise architecture, and strategic roadmaps.

Talk is cheap, show me the code:

API Document