wayknow/clearjson
ClearJSON
개인정보 보호 우선 브라우저 JSON 뷰어. 추적 없음. 완전 로컬. AI 에이전트용 MCP 서버 포함.
ClearJSON은 브라우저에서 JSON 응답을 자동으로 감지하고 포맷하는 Chrome 확장 프로그램입니다. JSON Formatter 논란에 대응하여 만들어졌습니다. 광고를 삽입하거나, 사용자를 추적하거나, 데이터를 판매하지 않겠습니다.
MCP 서버 (신규!)
AI 에이전트(Claude Code 등)용: npx -y clearjson-mcp
{
"mcpServers": {
"clearjson": {
"command": "npx",
"args": ["-y", "clearjson-mcp"]
}
}
}10가지 도구 — 포맷, 검증, 검색, JSONPath 쿼리, 심층 비교(diff), 변환(CSV/TSV/YAML/TypeScript), 라이선스 관리까지. 대용량 파일에도 안전한 유일한 JSON MCP 서버입니다. npm 및 mcp.so에서 사용할 수 있습니다. 전체 근거는 AGENT_FIRST.md를 참조하세요.
Related MCP server: agent-utils-mcp
기능
무료 (영구)
✅ JSON/JSON-LD/JSON:API/NDJSON 자동 감지 및 포맷
✅ 들여쓰기 가이드가 있는 접이식 트리 뷰
✅ 구문 강조(문자열, 숫자, 불리언, null)
✅ 10가지 테마(Dark, Light, Sepia, Monokai, Dracula, Nord, One Dark, Solarized Light, GitHub, High Contrast)
✅ 시스템 테마 자동 전환
✅ 클릭하여 값 복사, 우클릭으로 JSONPath
✅ 자동 감지된 링크(클릭 가능) 및 이미지 미리보기(호버)
✅ 원시 보기의 줄 번호
✅ 통계 바(노드 수, 깊이, 파일 크기, 파싱 시간)
✅ 키보드 단축키(
[접기,]펼치기,D테마,R원시 보기,Enter검색 탐색)✅ 독립형 뷰어(JSON 붙여넣기, 드래그 앤 드롭, 파일 불러오기)
✅ URL 제외 목록(정규식 패턴)
✅ 100% 로컬 처리 — 네트워크 요청 0회
Pro ($2.99/월 또는 $19.99/년)
💰 대용량 파일 가상 스크롤(100MB+도 멈춤 없이)
💰 고급 검색(정규식, 일치 항목 강조, 결과 탐색)
💰 JWT 자동 디코드(헤더 + 페이로드 인라인, 만료 감지)
💰 다중 형식 내보내기(CSV, TSV, YAML, 재귀 추론을 통한 TypeScript 타입)
💰 30가지 프리미엄 테마(Catppuccin, Tokyo Night, Gruvbox, Nord, Dracula, Monokai…)
💰 사용자 지정 키보드 단축키(구성 가능한 6개 바인딩)
설치
Chrome Web Store
Edge Add-ons
압축 해제하여 로드 (개발)
이 저장소를 클론하세요
chrome://extensions/로 이동하세요"개발자 모드"를 활성화하세요
"Load unpacked"를 클릭하고 프로젝트 폴더를 선택하세요
프로젝트 구조
clearjson/
├── manifest.json # Chrome Extension manifest (MV3)
├── server/ # License server (Cloudflare Worker + D1)
│ ├── src/index.js # API: verify/generate/webhook/admin
│ ├── schema.sql # D1 database schema
│ └── wrangler.toml # Worker config
├── clearjson-mcp/ # MCP server (npm: clearjson-mcp)
│ ├── package.json
│ ├── src/
│ │ ├── index.js # MCP entry point (stdio transport)
│ │ ├── core/ # Core logic (parser, exporter, license)
│ │ └── tools/ # 7 JSON tools + 3 license tools
│ ├── tests/ # 49 MCP unit tests
│ └── README.md
├── src/
│ ├── content/
│ │ ├── content.js # Content script (JSON detection + viewer injection)
│ │ └── content.css # Base styles + CSS variable theming
│ ├── viewer/
│ │ ├── viewer.html # Standalone viewer page
│ │ └── viewer.js # Viewer logic
│ ├── popup/
│ │ ├── popup.html # Extension toolbar popup
│ │ ├── popup.js
│ │ └── popup.css
│ └── utils/
│ ├── parser.js # JSON detection + parsing
│ ├── tokenizer.js # Syntax highlighting tokenizer
│ ├── themes.js # 30 theme definitions
│ ├── license.js # Pro license system
│ ├── export.js # CSV/TSV/YAML/TypeScript export
│ ├── stream-parser.js # Web Worker streaming parser
│ ├── virtual-tree.js # Virtual scrolling tree view
│ └── tree.js # Standard tree view renderer
├── tests/ # 136 unit tests (Node built-in runner)
│ ├── helpers/setup.js
│ ├── test-parser.js
│ ├── test-tokenizer.js
│ ├── test-jwt.js
│ ├── test-license.js
│ └── test-export.js
├── test-data/ # Test data + automation scripts
│ ├── complex-api-response.json
│ ├── jwt-test.json
│ ├── users-array.json
│ ├── large-array.json # 2.2 MB for Pro gate testing
│ ├── server.js # Local test server (port 8765)
│ ├── run-checklist.js # 130-item static analysis
│ ├── browser-test.js # 21-item browser automation
│ └── TEST-CHECKLIST.md # 43-item manual checklist
├── icons/
│ ├── icon.svg
│ ├── icon16.png
│ ├── icon48.png
│ └── icon128.png
└── README.md개발
# For development, load the extension unpacked:
# 1. chrome://extensions/ → Developer mode ON
# 2. Load unpacked → select the project root
# 3. Edit files and click refresh on the extension card
# Run unit tests (zero dependencies, Node 18+):
npm test # 136 tests (Chrome extension)
cd clearjson-mcp && npm test # 49 tests (MCP server)
# Run static analysis checklist (130 checks):
node test-data/run-checklist.js
# Run browser automation tests (requires puppeteer):
node test-data/browser-test.js
# Start local test server (Pro auto-enabled on localhost:8765):
node test-data/server.js현재 상태 (v1.1.1 — CWS에서 서비스 중)
모든 기능이 구현되었습니다. Pro는 Creem을 통해 이용할 수 있습니다($2.99/월 또는 $19.99/년). 136개의 단위 테스트 통과. MCP 서버 v1.1.0이 npm에 게시되었습니다.
전체 프로젝트 상태, 아키텍처 결정, 릴리스 체크리스트는 STATUS.md를 참조하세요.
개인정보 보호
ClearJSON은 모든 것을 로컬에서 처리합니다. 약속합니다:
❌ 어디로도 데이터 전송 없음
❌ 분석 또는 원격 측정 없음
❌ 추적 없음
❌ 광고 없음
❌ 계정 없음
❌ 타사 스크립트 없음
권한은 최소한으로만 요청합니다:
storage— 테마 기본 설정 저장activeTab— 현재 탭에서 JSON 포맷호스트 권한 — JSON 콘텐츠 유형 감지에만 필요하며, JSON이 아닌 페이지에서는 페이지 콘텐츠를 읽지 않습니다.
링크
제품 페이지: wayknow.tech/clearjson.html
MCP 서버: npmjs.com/package/clearjson-mcp
개인정보 처리방침: wayknow.tech/clearjson-privacy.html
왜 "ClearJSON"인가?
원래 JSON Formatter(사용자 200만 명 이상, 10년 오픈소스)가 매각된 후 광고를 삽입하고 사용자를 추적하기 시작하면서, 개발자들은 신뢰할 수 있는 대안이 필요해졌습니다. ClearJSON은 사용자를 착취하지 않고 존중하는 지속 가능한 Pro 모델을 갖춘 그 대안으로 만들어졌습니다.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseCqualityDmaintenanceAn efficient MCP server for performing accurate, deep comparisons between JSON objects or strings using the deepdiff engine. It provides AI agents with standardized difference reports, supporting nested structures and various input formats to ensure precise data analysis.1
- FlicenseNot gradedqualityDmaintenanceSwiss-army-knife utility MCP server for AI agents. 18 tools for JSON validation/formatting, base64 encode/decode, hash generation, UUID generation, URL parsing, regex testing, markdown↔HTML conversion, text stats, slug generation, datetime conversion, cron parsing, text diffing, CSV↔JSON conversion, and JWT decoding. Zero API Key required5
- AlicenseNot gradedqualityDmaintenanceAn MCP server that provides tools for JSON validation, diffing, and transformation operations such as flattening and renaming. It also enables data format conversion between JSON, CSV, and YAML to streamline data processing for AI agents.40MIT
- AlicenseAqualityBmaintenanceDeveloper-focused MCP server for code analysis and local engineering workflows. Provides tools for JSON repair, encoding fixes, import organization, format conversion, diff inspection, and regex testing.221533MIT
Related MCP Connectors
JSON tools MCP.
Remote MCP server: 10 developer utilities (base64, JWT, DNS, UUID, URL, JSON, UA, IP lookup).
MCP Spec Compliance MCP — audits any MCP server.json against the official Model Context Protocol
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/wayknow/clearjson'
If you have feedback or need assistance with the MCP directory API, please join our Discord server