CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Json

ryudi84/sovereign-mcp-servers
6 toolsSTDIOregistry active
Summary

Seven tools for working with JSON data when you need Claude to manipulate structured text without writing throwaway scripts. Format and minify JSON strings, validate syntax, compute diffs between objects, convert between JSON and other formats, query with JSONPath expressions, and analyze structure. Part of the Sovereign MCP collection's 34 servers. Runs via npx json-forge-mcp or as a stdio transport server. Useful when you're prototyping APIs, debugging payloads, or need quick transformations in a chat context instead of opening a separate formatter or writing validation code.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Tools

Public tool metadata for what this MCP can expose to an agent.

6 tools
json_formatPretty-print or minify JSON. Specify indent level (default 2) or set minify=true to compact JSON into a single line.3 params

Pretty-print or minify JSON. Specify indent level (default 2) or set minify=true to compact JSON into a single line.

Parameters* required
jsonstring
The JSON string to format
indentinteger
Indentation spaces (1-8, default 2)default: 2
minifyboolean
If true, output compact single-line JSON (overrides indent)default: false
json_validateValidate a JSON string. Returns valid=true with type info on success, or valid=false with line, column, error message, and a suggestion for fixing common mistakes.1 params

Validate a JSON string. Returns valid=true with type info on success, or valid=false with line, column, error message, and a suggestion for fixing common mistakes.

Parameters* required
jsonstring
The JSON string to validate
json_diffCompare two JSON values and return a structured diff showing added paths, removed paths, and changed values. Supports nested objects and arrays.2 params

Compare two JSON values and return a structured diff showing added paths, removed paths, and changed values. Supports nested objects and arrays.

Parameters* required
json_astring
The original JSON (before state)
json_bstring
The new JSON (after state)
json_queryQuery JSON data using JSONPath-like syntax. Supports: root ($), dot notation ($.a.b), bracket notation ($["key"]), array index ($[0]), wildcard (*), deep scan (..), slice ([1:3]), filter ([?(@.age>18)]), and union ([0,1]).2 params

Query JSON data using JSONPath-like syntax. Supports: root ($), dot notation ($.a.b), bracket notation ($["key"]), array index ($[0]), wildcard (*), deep scan (..), slice ([1:3]), filter ([?(@.age>18)]), and union ([0,1]).

Parameters* required
jsonstring
The JSON string to query
querystring
JSONPath expression (e.g. "$.users[0].name", "$.items[*].price", "$..[?(@.active==true)]")
json_transformTransform JSON data. Operations: "flatten" (nested→flat with dot keys), "unflatten" (flat→nested), "pick" (keep only specified keys), "omit" (remove specified keys), "rename" (rename keys via a map). Use options.deep=true for recursive key operations.3 params

Transform JSON data. Operations: "flatten" (nested→flat with dot keys), "unflatten" (flat→nested), "pick" (keep only specified keys), "omit" (remove specified keys), "rename" (rename keys via a map). Use options.deep=true for recursive key operations.

Parameters* required
jsonstring
The JSON string to transform
optionsobject
Operation-specific options
operationstring
The transformation operationone of flatten · unflatten · pick · omit · rename
json_schema_generateGenerate a JSON Schema (draft-07 compatible) from a sample JSON object. Infers types, required fields, formats (date-time, email, uri, uuid), and nested structure. Ideal for API documentation or validation setup.2 params

Generate a JSON Schema (draft-07 compatible) from a sample JSON object. Infers types, required fields, formats (date-time, email, uri, uuid), and nested structure. Ideal for API documentation or validation setup.

Parameters* required
jsonstring
Sample JSON to generate schema from
titlestring
Schema title (default "GeneratedSchema")default: GeneratedSchema

Sovereign MCP Servers

GitHub stars License: MIT MCP GitHub Sponsors

34 MCP servers. 121 tools. One npx command away.

A collection of production-ready Model Context Protocol servers for Claude Desktop, Cursor, Windsurf, and any MCP-compatible client.

Quick Start

Pick any server and run it:

# Web scraping
npx sovereign-web-scraper-mcp

# SQL toolkit
npx sql-forge-mcp

# Git helpers
npx git-forge-mcp

# CSS generator
npx css-forge-mcp

# JSON Swiss Army knife
npx json-forge-mcp

Or add to your MCP configuration:

{
  "mcpServers": {
    "web-scraper": { "command": "npx", "args": ["-y", "sovereign-web-scraper-mcp"] },
    "seo-analyzer": { "command": "npx", "args": ["-y", "sovereign-seo-analyzer-mcp"] },
    "json-forge": { "command": "npx", "args": ["-y", "json-forge-mcp"] }
  }
}

All Servers

ServerToolsDescriptionInstall
api-forge-mcp3MCP server for generating REST API boilerplate — Express end...npx sovereign-api-forge-mcp
api-tester5MCP server for API testing — make HTTP requests, test endpoi...npx sovereign-api-tester-mcp
base64-forge6MCP server for Base64, URL, and HTML encoding/decodingnpx base64-forge-mcp
changelog-forge3MCP server for generating changelogs from conventional commi...npx changelog-forge-mcp
code-quality5MCP server for code quality analysis — cyclomatic complexity...npx sovereign-code-quality-mcp
color-forge2MCP server for color palette generation and conversion — HEX...npx color-forge-mcp
cron-forge3MCP server for cron expression parsing, validation, human-re...npx cron-forge-mcp
diff-forge2MCP server for computing text diffs, comparing strings, and ...npx diff-forge-mcp
env-forge3MCP server for .env file validation, parsing, comparison, an...npx env-forge-mcp
github-stats6MCP server for GitHub repository statistics — stars, forks, ...npx sovereign-github-stats-mcp
gradient-forge2MCP server for CSS gradient generation — linear, radial, con...npx gradient-forge-mcp
hash-forge3MCP server for cryptographic hashing — MD5, SHA-1, SHA-256, ...npx hash-forge-mcp
ip-calc3MCP server for IP address calculations — subnet masks, CIDR ...npx ip-calc-mcp
json-forge7MCP server for JSON processing — format, validate, diff, con...npx json-forge-mcp
jwt-forge2MCP server for JWT decoding and inspectionnpx jwt-forge-mcp
landing-forge-mcp3MCP server that generates complete, production-ready HTML la...npx landing-forge-mcp
lorem-forge3MCP server for generating placeholder data — lorem ipsum, fa...npx lorem-forge-mcp
markdown-forge4MCP server for markdown processing — generate tables, TOC, c...npx markdown-forge-mcp
mcp-forge-mcp3Meta MCP server that generates other MCP servers — the facto...npx mcp-forge-mcp
meta-forge2MCP server for SEO meta tag generation — title, description,...npx meta-forge-mcp
password-forge3MCP server for generating secure passwords, passphrases, and...npx password-forge-mcp
qr-text-forge2MCP server for generating QR code data, encoding URLs, and c...npx qr-text-forge-mcp
readme-forge1MCP server for README.md generation from project metadatanpx readme-forge-mcp
regex-lab3MCP server for regex testing, matching, replacing, and valid...npx regex-lab-mcp
seo-analyzer5MCP server for SEO analysis — check meta tags, heading hiera...npx sovereign-seo-analyzer-mcp
shadow-forge2MCP server for CSS box-shadow generationnpx shadow-forge-mcp
timestamp-forge3MCP server for timestamp conversion — Unix, ISO 8601, relati...npx timestamp-forge-mcp
uuid-forge5MCP server for generating UUIDs (v4, v7), ULIDs, nanoids, an...npx uuid-forge-mcp
web-scraper4MCP server for web scraping — fetch URLs, extract text/links...npx sovereign-web-scraper-mcp
sql-forge5SQL toolkit: query builder, formatter, validator, schema gen...npx sql-forge-mcp
git-forge4Git toolkit: commit messages, .gitignore, branch names, comm...npx git-forge-mcp
css-forge4CSS toolkit: flexbox, grid, animations, media queries genera...npx css-forge-mcp
yaml-forge5YAML toolkit: format, validate, JSON/YAML converter, config ...npx yaml-forge-mcp
html-forge5HTML toolkit: boilerplate, minify, prettify, validate, meta ...npx html-forge-mcp

Categories

Web & SEO

  • sovereign-web-scraper-mcp — MCP server for web scraping — fetch URLs, extract text/links/metadata, CSS selec
  • sovereign-seo-analyzer-mcp — MCP server for SEO analysis — check meta tags, heading hierarchy, link analysis,
  • meta-forge-mcp — MCP server for SEO meta tag generation — title, description, Open Graph, Twitter

Developer Tools

  • sovereign-github-stats-mcp — GitHub repository statistics — stars, forks, issues, PRs, languages
  • sovereign-code-quality-mcp — Code quality analysis — cyclomatic complexity, duplicate detection
  • sovereign-api-tester-mcp — API testing — HTTP requests, endpoint testing, cURL generation
  • sovereign-api-forge-mcp — REST API boilerplate generator — Express endpoints, middleware
  • sql-forge-mcp — SQL query builder, formatter, validator, schema generator, patterns
  • git-forge-mcp — Git commit messages, .gitignore, branch names, command generator

Data & Encoding

  • json-forge-mcp — MCP server for JSON processing — format, validate, diff, convert, minify, query,
  • base64-forge-mcp — MCP server for Base64, URL, and HTML encoding/decoding
  • hash-forge-mcp — MCP server for cryptographic hashing — MD5, SHA-1, SHA-256, SHA-384, SHA-512
  • regex-lab-mcp — MCP server for regex testing, matching, replacing, and validation

ID Generation

  • uuid-forge-mcp — MCP server for generating UUIDs (v4, v7), ULIDs, nanoids, and random IDs. Every
  • password-forge-mcp — MCP server for generating secure passwords, passphrases, and checking password s
  • qr-text-forge-mcp — MCP server for generating QR code data, encoding URLs, and creating vCard/WiFi/e

DevOps & Config

  • yaml-forge-mcp — YAML format, validate, JSON/YAML converter, config templates (docker-compose, k8s)
  • env-forge-mcp — .env file validation, parsing, comparison, and generation
  • cron-forge-mcp — Cron expression parsing, validation, human-readable explanation
  • ip-calc-mcp — IP address calculations — subnet masks, CIDR notation, IP ranges
  • diff-forge-mcp — Text diffs, comparing strings, unified diff format

Frontend & Design

  • css-forge-mcp — Flexbox, grid, animations, media queries generator
  • html-forge-mcp — HTML boilerplate, minify, prettify, validate, meta tags
  • color-forge-mcp — Color palette generation and conversion — HEX, RGB, HSL
  • gradient-forge-mcp — CSS gradient generation — linear, radial, conic
  • shadow-forge-mcp — CSS box-shadow generation

Content & Docs

  • markdown-forge-mcp — MCP server for markdown processing — generate tables, TOC, convert to HTML, form
  • readme-forge-mcp — MCP server for README.md generation from project metadata
  • changelog-forge-mcp — MCP server for generating changelogs from conventional commits, parsing semver,
  • lorem-forge-mcp — MCP server for generating placeholder data — lorem ipsum, fake names, emails, ad

Code Generation

  • mcp-forge-mcp — Meta MCP server that generates other MCP servers — the factory that builds facto
  • landing-forge-mcp — MCP server that generates complete, production-ready HTML landing pages, product
  • sovereign-api-forge-mcp — MCP server for generating REST API boilerplate — Express endpoints, middleware,

Support

If these tools help you, please:

  • Star this repo
  • Sponsor on GitHub
  • Share with your team

License

MIT — Built by Sovereign (Taylor, autonomous AI agent)

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Categories
Data & Analytics
Registryactive
Packagejson-forge-mcp
TransportSTDIO
UpdatedFeb 25, 2026
View on GitHub

Related Data & Analytics MCP Servers

View all →
Google Sheets

com.mcparmory/google-sheets

Create, read, and modify spreadsheet data, formatting, and sheets
25
Google Sheets

domdomegg/google-sheets-mcp

Allow AI systems to read, write, and query spreadsheet data via Google Sheets.
2
Google Sheets Mcp

henilcalagiya/google-sheets-mcp

Powerful tools for automating Google Sheets using Model Context Protocol (MCP)
14
Futuristic Risk Intelligence

cct15/war-dashboard-data

Geopolitical conflict risk, political events, and maritime traffic data for AI agents
1
Mcp Google Sheets Full

moooonad/mcp-google-sheets-full

Full Google Sheets MCP: 26 tools + run_sheets_script escape hatch. User OAuth, no service account.
CSV to JSON API

io.github.br0ski777/csv-to-json

Parse CSV to JSON array. Auto-detect delimiter, headers. x402 micropayment.