npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@lpenguin/json-mcp

v2.0.0

Published

MCP server for querying and manipulating JSON data using JSONPath

Readme

json-mcp

A Model Context Protocol (MCP) server for querying and manipulating JSON data using JSONPath expressions.

Features

This MCP server provides powerful tools for working with JSON files:

  • search: Search JSON data in a file by simple text and return JSONPaths with context around matching elements
  • query: Query JSON data in a file by JSONPath expressions
  • appendToArray: Append element to array(s) selected by JSONPath
  • set: Set (upsert) a value at a JSONPath. Can update a single match or all matches.
  • delete: Delete element at JSONPath in a file

Installation

You can run this server using npx:

npx @lpenguin/json-mcp

Or install it globally:

npm install -g @lpenguin/json-mcp

Usage

As an MCP Server

Add to your MCP client configuration (e.g., Claude Desktop, Cline):

{
  "mcpServers": {
    "@lpenguin/json-mcp": {
      "command": "npx",
      "args": ["-y", "@lpenguin/json-mcp"]
    }
  }
}

Tool Examples

Search for text in JSON file

// Search for "apple" in data.json
{
  "name": "search",
  "arguments": {
    "file": "/path/to/data.json",
    "searchText": "apple"
  }
}

Query by JSONPath

// Get all book titles from books.json
{
  "name": "query",
  "arguments": {
    "file": "/path/to/books.json",
    "path": "$.store.book[*].title"
  }
}

Append to array

// 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 (upsert) data

// 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 data

// Delete first item from array in items.json
{
  "name": "delete",
  "arguments": {
    "file": "/path/to/items.json",
    "path": "$.items[0]"
  }
}

JSONPath Syntax

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

Examples:

  • $.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 book

Development

Setup

npm install

Build

npm run build

Test

npm test

License

MIT