JSON Query MCP
@mgraczyk
关于 JSON Query MCP
An MCP server that gives AI agents tools to query large JSON files
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"json-query": {
"command": "npx",
"args": [
"json-query-mcp"
]
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is JSON Query MCP?
An MCP server that enables LLMs implementing the Model Context Protocol to query large JSON files using JSONPath expressions and string-based key/value searching. It is designed for handling JSON data too large to fit in a single LLM context window.
How to use JSON Query MCP?
Run npx json-query-mcp from the command line. For Cursor, add an entry to ~/.cursor/mcp.json specifying "command": "npx" and "args":["<path-to-repo>"].
Key features of JSON Query MCP
- Query JSON files using JSONPath expressions
- Search for keys that match a query string
- Search for values that match a query string
- Handle JSON files larger than 1 million characters
Use cases of JSON Query MCP
- Extract a small subset of data from a massive JSON Swagger definition to generate TypeScript interfaces
- Find specific keys or values in complex or deeply nested JSON documents
- Enable LLMs to work with JSON files that exceed typical context window limits
FAQ from JSON Query MCP
What does JSON Query MCP do?
It provides tools for LLMs to query and search large JSON files without loading the entire file into the model’s context.
How do I install JSON Query MCP?
Run npx json-query-mcp, or configure it as an MCP server in Cursor by adding the command and arguments to mcp.json.
Does JSON Query MCP have any runtime dependencies?
The README does not specify any dependencies beyond Node.js (implied by npx and npm commands).
Can JSON Query MCP handle files larger than 1 million characters?
Yes, the example demonstrates it reading a Swagger definition exceeding 1 million characters and extracting a small portion.
Where does the JSON data live?
The README does not specify; data is presumably passed as a file path or content via the MCP tool interface.
其他 分类下的更多 MCP 服务器
Codelf
unbugA search tool helps dev to solve the naming things problem.
Awesome Mcp Servers
punkpeyeA collection of MCP servers.
MCP Go 🚀
mark3labsA Go implementation of the Model Context Protocol (MCP), enabling seamless integration between LLM applications and external data sources and tools.
MCP Toolbox for Databases
googleapisMCP Toolbox for Databases is an open source MCP server for databases.
FastMCP v2 🚀
jlowin🚀 The fast, Pythonic way to build MCP servers and clients.
评论