Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add yedanyagamiai-cmd/openclaw-mcp-servers --skill json-toolkitgit clone --depth 1 https://github.com/yedanyagamiai-cmd/openclaw-mcp-serversWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/yedanyagamiai-cmd/openclaw-mcp-servers/json-toolkit)<a href="https://agentmods.dev/skills/yedanyagamiai-cmd/openclaw-mcp-servers/json-toolkit"><img src="https://agentmods.dev/badge/skills/yedanyagamiai-cmd/openclaw-mcp-servers/json-toolkit/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/yedanyagamiai-cmd/openclaw-mcp-servers/json-toolkit"><img src="https://agentmods.dev/badge/skills/yedanyagamiai-cmd/openclaw-mcp-servers/json-toolkit.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00160 | $0.02535 |
| Opus 5 | $0.00080 | $0.01267 |
| Sonnet 5 | $0.00032 | $0.00507 |
| Haiku 4.5 | $0.00016 | $0.00253 |
Grade A, and why
openclaw-json-toolkit scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 234 lines — stays where its author put it; the contents beside it link to each section on GitHub.
OpenClaw JSON Toolkit v2.0
The Swiss Army knife for JSON — 6 tools, zero install, instant results.
Quick Reference
| Situation | Action | Tool |
|---|---|---|
| Messy single-line JSON from an API | Pretty-print with 2-space indent | json_format |
| Need to minify for production | Compress to single line | json_format (minify) |
| Pasted JSON won't parse | Find exact error line + column | json_validate |
| Two config files changed | See added/removed/changed paths | json_diff |
| Need one field from 500-line JSON | Query with JSONPath expression | json_query |
| Deeply nested keys hard to access | Flatten to dot-notation | json_transform |
| Building an API contract | Auto-generate draft-07 schema | json_schema_generate |
What's New in v2.0
- :zap: CloudEdge Protocol -- All processing runs on Cloudflare's global edge network. Sub-100ms response worldwide, zero cold starts.
- :mag: DeepQuery Engine -- Full JSONPath with deep scan (
..), wildcards (*), filter expressions (?(@.price < 10)), and array slicing ([0:5]). - :shield: Schema Draft-07 Intelligence -- Auto-detects semantic formats: email, URI, date-time, IPv4, UUID. Infers
requiredfields andenumcandidates from sample data. - :arrows_counterclockwise: StructureMorph Transform -- Recursive flatten/unflatten, key renaming with mapping objects, pick/omit projections on arbitrarily nested JSON.
MCP Quick Start
{
"openclaw-json": {
"type": "streamable-http",
"url": "https://json-toolkit-mcp.yagami8095.workers.dev/mcp"
}
}
Add to Claude Desktop, Cursor, Windsurf, VS Code, or any MCP-compatible client. No API key needed for Free tier. Works immediately.
Detection Triggers
This skill activates when you say:
- "format this JSON" / "pretty print this" / "indent this JSON"
- "validate my JSON" / "is this valid JSON" / "why won't this parse"
- "compare these two JSON" / "diff these objects" / "what changed between these configs"
- "query this JSON" / "extract from JSON" / "JSONPath" / "get the nested value"
- "flatten this JSON" / "restructure this" / "rename these keys" / "unflatten"
- "generate a schema" / "create JSON Schema" / "schema from this sample"
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 10d ago First seen · 234 lines · 160 tokens per session scan A 72bd4f500fd2
openclaw-json-toolkit is a skill published in the GitHub repository yedanyagamiai-cmd/openclaw-mcp-servers (3 stars, last pushed 5mo ago), licensed MIT. It adds 160 tokens to every session and 2,535 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
add-provider
Add a new storage or service provider to the core package. Use when implementing a new backend for StorageService (e.g., a new database) or a new service provider (e.g., a new LLM backend).
spotify-exhaustive-feature-sweep
Exhaustive feature sweep across Spotify domains — enumerate all endpoints into quantity-first tool proposals with quota flags and batched GitHub logging.
api-context
Canonical reference for the unified Context object passed to every tool and resource handler in @cyanheads/mcp-ts-core. Covers the full interface, its RequestContext base, all sub-APIs (ctx.log, ctx.state, ctx.requestInput, ctx.inputs, ctx.enrich, ctx.content), and when to use each.
api-context
Canonical reference for the unified Context object passed to every tool and resource handler in @cyanheads/mcp-ts-core. Covers the full interface, its RequestContext base, all sub-APIs (ctx.log, ctx.state, ctx.requestInput, ctx.inputs, ctx.enrich, ctx.content), and when to use each.
api-linter
MCP definition linter rules reference. Use when bun run lint:mcp or bun run devcheck reports a lint error or warning (format-parity, schema-is-object, name-format, server-json-, etc.) and you need to understand the rule, its severity, and how to fix it. Every rule ID the linter emits has an entry in this doc.
api-errors
McpError constructor, JsonRpcErrorCode reference, and error handling patterns for @cyanheads/mcp-ts-core. Use when looking up error codes, understanding where errors should be thrown vs. caught, or using ErrorHandler.tryCatch in services.