JSON MCP Server (@gongrzhe/server-json-mcp@1.0.3)
JSON handling and processing microservice server
Overview
JSON MCP Server is a microservice designed for handling and processing JSON data, enabling interaction with JSON through standardized tools for querying and manipulation.
To use the JSON MCP Server, you can install it via npm or npx. For example, you can run npx @gongrzhe/server-json-mcp@1.0.3 to start the server or install it globally with npm install -g @gongrzhe/server-json-mcp@1.0.3 and then run server-json-mcp.
- Query JSON data using JSONPath syntax with extended operations. - Filter JSON data based on conditions. - Support for various operations including array, string, numeric, and date operations. - Aggregation capabilities for statistical analysis.
- Querying and manipulating large datasets in JSON format.
- Integrating with applications that require dynamic JSON data processing.
- Performing complex data analysis and transformations on JSON data.
Add to your AI client
Use these steps to connect JSON MCP Server (@gongrzhe/server-json-mcp@1.0.3) in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"json-mcp-server-gongrzhe": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-json-mcp-server-gongrzhe"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"json-mcp-server-gongrzhe": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-json-mcp-server-gongrzhe"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"json-mcp-server-gongrzhe": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-json-mcp-server-gongrzhe"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"json-mcp-server-gongrzhe": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-json-mcp-server-gongrzhe"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"json-mcp-server-gongrzhe": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-json-mcp-server-gongrzhe"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"json-mcp-server-gongrzhe": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-json-mcp-server-gongrzhe"
]
}
}
}FAQ
What is JSONPath?
JSONPath is a query language for JSON, similar to XPath for XML, allowing you to extract and manipulate data from JSON documents.
Is JSON MCP Server free to use?
Yes! JSON MCP Server is open-source and free to use.
Can I use JSON MCP Server with other programming languages?
While it is primarily designed for Node.js, you can interact with it through HTTP requests from any programming language.