@mukundakatta/jsonpath-mcp
v0.1.1
Published
MCP server: query a JSON value with JSONPath ($.foo.bar[*]).
Downloads
225
Maintainers
Readme
jsonpath-mcp
MCP server: query JSON with JSONPath. Backed by jsonpath-plus. Supports
recursive descent ($..price), filter expressions ($.items[?(@.in_stock)]),
and result-type variants (value / path / all).
Tool
query
{ "json": { "books": [{ "title": "A", "price": 5 }, { "title": "B", "price": 12 }] },
"path": "$.books[?(@.price < 10)].title" }→ { "matches": ["A"] }
Configure
{ "mcpServers": { "jsonpath": { "command": "npx", "args": ["-y", "@mukundakatta/jsonpath-mcp"] } } }License
MIT.
