What is the io.github.rog0x/json MCP server?
JSON/YAML/CSV validate, diff, transform for AI agents
How to install io.github.rog0x/json
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": {
"json": {
"command": "npx",
"args": [
"-y",
"@rog0x/mcp-json-tools"
]
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"json": {
"command": "npx",
"args": [
"-y",
"@rog0x/mcp-json-tools"
]
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"json": {
"command": "npx",
"args": [
"-y",
"@rog0x/mcp-json-tools"
]
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"json": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@rog0x/mcp-json-tools"
]
}
}
}Claude Code
claude mcp add json -- npx -y @rog0x/mcp-json-tools