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 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/ More Validation tools
Email Validate
Validate an email address and break it into local / domain / TLD parts.
Html Formatter
Format (beautify) or minify HTML and return the result with a tag-balance validation report.
Json Validate
Validate a JSON string.
Openapi Validator
Validate an OpenAPI 3.x (or Swagger 2.0) document given as JSON or YAML and return a report with errors, warnings, and summary info (title,
Phone Format
Format a phone number to E.164 (+CCNNNNNNN…) given an optional country calling code.
State Machine Designer
Validate a finite state machine given as nodes and edges and return a normalized machine config plus issues.
Url Validate
Validate that a string is a well-formed URL and (optionally) require HTTPS.
Xml Formatter
Beautify or minify an XML document and return the formatted text.