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 MCP tool findutils:wvw_apps_json_generator. See the REST reference →

Call it over MCP

Tool name findutils:wvw_apps_json_generator · no API keys · 120 requests/min per IP

Claude Code

claude mcp add findutils --transport http https://mcp.findutils.com/

Claude Desktop — claude_desktop_config.json

{
  "mcpServers": {
    "findutils": {
      "url": "https://mcp.findutils.com/"
    }
  }
}

Raw JSON-RPC (any MCP client) — verified example

curl -X POST https://mcp.findutils.com/ \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
      "name": "wvw_apps_json_generator",
      "arguments": {
        "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"
          }
        ]
      }
    }
  }'

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 a REST endpoint

The same tool answers plain HTTP at POST /api/tools/wvw-apps-json-generator/execute — no key, 60 requests/min.

Open the REST reference for Wvw Apps Json Generator →

More Validation tools