Wvw Apps Json Generator

Validation REST API MCP

Build and validate an apps.json manifest for wvw.dev (World Vibe Web) from a store object and a list of apps. Returns the cleaned manifest with $schema and computed categories, plus validation errors (missing fields, bad kebab-case ids, duplicate ids, unknown categories, invalid GitHub URLs) and warnings (invalid optional URLs). Valid category ids: macos, web, cli, developer-tools, productivity, utilities, education, entertainment, games, music, photo-video, graphics-design, social-networking, finance, health-fitness, lifestyle, news, business, reference, travel, food-drink, navigation, sports, weather, shopping, books, medical.

This page documents the HTTP endpoint POST /api/tools/wvw-apps-json-generator/execute. See the MCP reference →

Call it over REST

POST https://api.findutils.com/api/tools/wvw-apps-json-generator/execute · no API keys · 60 requests/min per IP

Execute — verified arguments

curl -X POST https://api.findutils.com/api/tools/wvw-apps-json-generator/execute \
  -H "Content-Type: application/json" \
  -d '{
    "store": {
      "name": "Vibe Dev Tools",
      "developer": "Jane"
    },
    "apps": [
      {
        "id": "vibe-dashboard",
        "name": "Vibe Dashboard",
        "subtitle": "Analytics",
        "description": "A dashboard.",
        "category": [
          "web"
        ],
        "platform": "Web",
        "price": "Free",
        "github": "https://github.com/janedev/vibe-dashboard"
      }
    ]
  }'

Parameter schema for this endpoint

curl https://api.findutils.com/api/tools/wvw-apps-json-generator

Interactive docs · OpenAPI 3.1 spec · All REST tools

Input schema

Argument Type Required Description
store object yes Store info: { name, developer, tagline?, github? }.
apps array yes Apps: [{ id (kebab-case), name, subtitle, description, category: [ids], platform, price, github, developer?, longDescription?, icon?, iconEmoji?, iconStyle?, homepage?, language?, brew?, installCommand?, downloadUrl?, requirements?, features?, screenshots? }].

Example arguments (verified)

{
  "store": {
    "name": "Vibe Dev Tools",
    "developer": "Jane"
  },
  "apps": [
    {
      "id": "vibe-dashboard",
      "name": "Vibe Dashboard",
      "subtitle": "Analytics",
      "description": "A dashboard.",
      "category": [
        "web"
      ],
      "platform": "Web",
      "price": "Free",
      "github": "https://github.com/janedev/vibe-dashboard"
    }
  ]
}

Also an MCP tool

Claude, Cursor, and any MCP client can call this tool as findutils:wvw_apps_json_generator after one connect command.

Connect once

claude mcp add findutils --transport http https://mcp.findutils.com/
Open the MCP reference for Wvw Apps Json Generator →

More Validation tools