
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
@lpenguin/json-mcp
Advanced tools
A Model Context Protocol (MCP) server for querying and manipulating JSON data using JSONPath expressions.
This MCP server provides powerful tools for working with JSON files:
You can run this server using npx:
npx @lpenguin/json-mcp
Or install it globally:
npm install -g @lpenguin/json-mcp
Add to your MCP client configuration (e.g., Claude Desktop, Cline):
{
"mcpServers": {
"@lpenguin/json-mcp": {
"command": "npx",
"args": ["-y", "@lpenguin/json-mcp"]
}
}
}
// Search for "apple" in data.json
{
"name": "search",
"arguments": {
"file": "/path/to/data.json",
"searchText": "apple"
}
}
// Get all book titles from books.json
{
"name": "query",
"arguments": {
"file": "/path/to/books.json",
"path": "$.store.book[*].title"
}
}
// Append new item to array in items.json
{
"name": "appendToArray",
"arguments": {
"file": "/path/to/items.json",
"path": "$.items",
"value": {"name": "new item", "price": 9.99}
}
}
// Set or create a value at path in config.json (updates first match only)
{
"name": "set",
"arguments": {
"file": "/path/to/config.json",
"path": "$.settings.timeout",
"value": 5000
}
}
// Set value at all matching paths (when all=true)
{
"name": "set",
"arguments": {
"file": "/path/to/data.json",
"path": "$.items[*].price",
"value": 9.99,
"all": true
}
}
// Delete first item from array in items.json
{
"name": "delete",
"arguments": {
"file": "/path/to/items.json",
"path": "$.items[0]"
}
}
This server uses jsonpath-plus which supports the full JSONPath specification:
$ - Root node@ - Current node. - Child operator.. - Recursive descent* - Wildcard[] - Array subscript[,] - Union operator[start:end:step] - Array slice?() - Filter expression() - Script expression$.store.book[*].author - All authors$..author - All authors (recursive)$.store.* - All things in store$.store..price - All prices in store$..book[?(@.price < 10)] - All books cheaper than 10$..book[-1:] - Last booknpm install
npm run build
npm test
MIT
FAQs
MCP server for querying and manipulating JSON data using JSONPath
We found that @lpenguin/json-mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.