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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@gongrzhe/server-json-mcp

v1.0.3

Published

A service that provides powerful JSON querying capabilities using JSONPath syntax and additional features.

Downloads

226

Readme

JSON Query Service

A service that provides powerful JSON querying capabilities using JSONPath syntax and additional features.

Features

1. Basic JSONPath Queries

{
  "url": "https://api.example.com/data",
  "jsonPath": "$[0]",              // Get first element
  "jsonPath": "$[*]",              // Get all elements
  "jsonPath": "$.fieldName",       // Get specific field
  "jsonPath": "$[*].fieldName"     // Get field from all elements
}

2. Array Operations

Array Slicing

{
  "jsonPath": "$[0:5]",            // Get first 5 elements
  "jsonPath": "$[-3:]",            // Get last 3 elements
  "jsonPath": "$[1:4]"             // Get elements from index 1 to 3
}

Array Length

{
  "jsonPath": "$.length()"         // Get array length
}

3. Field Selection

{
  "jsonPath": "$[*].title",                // Select single field
  "jsonPath": "$[*][title,body]",          // Select multiple fields
  "jsonPath": "$[0,1,2].title"             // Select field from specific indices
}

4. Filtering

Using JSONPath Filter

{
  "jsonPath": "$[?(@.id > 95)]",           // Greater than
  "jsonPath": "$[?(@.id >= 95)]",          // Greater than or equal
  "jsonPath": "$[?(@.id < 5)]",            // Less than
  "jsonPath": "$[?(@.userId == 1)]"        // Equal to
}

Using Filter Tool

{
  "url": "https://api.example.com/data",
  "jsonPath": "$[*]",
  "condition": "@.id < 5"                   // Numeric comparison
}
{
  "jsonPath": "$[*]",
  "condition": "@.title == 'example'"       // String comparison
}

5. Combining Operations

{
  "jsonPath": "$[0:5][?(@.id > 2)]",       // Slice then filter
  "jsonPath": "$[?(@.userId == 1)].title",  // Filter then select field
  "jsonPath": "$[-3:][title,body]"         // Get last 3 items with specific fields
}

Usage

Query Tool

{
  "url": "https://api.example.com/data",
  "jsonPath": "<your-jsonpath-expression>"
}

Filter Tool

{
  "url": "https://api.example.com/data",
  "jsonPath": "<base-jsonpath>",
  "condition": "<filter-condition>"
}

Examples

  1. Get first 5 posts
{
  "url": "https://jsonplaceholder.typicode.com/posts",
  "jsonPath": "$[0:5]"
}
  1. Get titles of posts by user 1
{
  "url": "https://jsonplaceholder.typicode.com/posts",
  "jsonPath": "$[?(@.userId == 1)].title"
}
  1. Get last 3 posts with specific fields
{
  "url": "https://jsonplaceholder.typicode.com/posts",
  "jsonPath": "$[-3:][title,body]"
}
  1. Filter posts with ID less than 5
{
  "url": "https://jsonplaceholder.typicode.com/posts",
  "jsonPath": "$[*]",
  "condition": "@.id < 5"
}

Notes

  1. All JSONPath expressions start with $ representing the root object
  2. Array indices are zero-based
  3. Filter conditions in the filter tool support basic comparison operators (>, >=, <, <=, ==, !=)
  4. String values in filter conditions should be wrapped in quotes
  5. The service supports both JSONPath filtering and a separate filter tool for more complex conditions