What is the io.github.tj-smith47/cfgd MCP server?
Declarative, GitOps-style machine configuration management
How to install io.github.tj-smith47/cfgd
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"cfgd": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/tj-smith47/cfgd:0.4.0"
]
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"cfgd": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/tj-smith47/cfgd:0.4.0"
]
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"cfgd": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/tj-smith47/cfgd:0.4.0"
]
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"cfgd": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/tj-smith47/cfgd:0.4.0"
]
}
}
}Claude Code
claude mcp add cfgd -- docker run -i --rm ghcr.io/tj-smith47/cfgd:0.4.0