mcp-json
Version:
MCP server for JSON file operations - read, analyze, search, find, relate, validate, and write JSON files
48 lines • 1.05 kB
JSON
{
"products": [
{
"id": "p1",
"name": "Laptop",
"category": "Electronics",
"price": 999.99,
"inStock": true,
"specifications": {
"cpu": "Intel i7",
"ram": "16GB",
"storage": "512GB SSD"
},
"tags": ["computer", "portable", "work"]
},
{
"id": "p2",
"name": "Coffee Maker",
"category": "Appliances",
"price": 79.99,
"inStock": false,
"specifications": {
"capacity": "12 cups",
"type": "drip",
"programmable": true
},
"tags": ["kitchen", "coffee", "morning"]
},
{
"id": "p3",
"name": "Running Shoes",
"category": "Sports",
"price": 129.99,
"inStock": true,
"specifications": {
"size": "10",
"color": "black",
"brand": "Nike"
},
"tags": ["footwear", "running", "fitness"]
}
],
"metadata": {
"lastUpdated": "2024-01-15",
"totalProducts": 3,
"categories": ["Electronics", "Appliances", "Sports"]
}
}