Jsony Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Jsony Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A Model Context Protocol (MCP) server that provides tools for managing JSON data files. This server allows AI assistants like Claude to read, write, query, and manage JSON files in a structured way.
npm install -g jsony-mcpgit clone https://github.com/vcosmin2701/jsony-mcp
cd mcp-json-server
npm install
npm run buildAdd the server to your Claude desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"json-manager": {
"command": "jsony-mcp"
}
}
}For local development:
{
"mcpServers": {
"json-manager": {
"command": "node",
"args": ["/path/to/mcp-json-server/dist/server.js"]
}
}
}By default, JSON files are stored in ~/.mcp-json-server/data/
You can customize this location using the MCP_JSON_DATA_DIR environment variable:
{
"mcpServers": {
"json-manager": {
"command": "jsony-mcp",
"env": {
"MCP_JSON_DATA_DIR": "/custom/path/to/data"
}
}
}
}Once configured, Claude can use the following tools:
Add a new object to a JSON file:
Add to todos.json: {"title": "Buy groceries", "completed": false}Retrieve all objects from a file:
Get all items from todos.jsonSearch for objects by property:
Find all completed tasks in todos.jsonUpdate an object at a specific index:
Update index 0 in todos.json: set completed to trueRemove an object by index:
Delete item at index 2 from todos.jsonList all available JSON files:
Show me all JSON filesThe server follows clean code principles and SOLID design patterns:
See ARCHITECTURE.md for detailed documentation.
npm run buildnpm run devnpm startMIT
Vladut Cosmin
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.