action vocadb_get_api_songs_names { label: "get_api_songs_names" provider: vocadb method: GET path: "/api/songs/names" encoding: json input: { type: "object" properties: { maxResults: { type: "integer" format: "int32" } nameMatchMode: { type: "string" enum: ["Auto", "Partial", "StartsWith", "Exact", "Words"] } query: { type: "string" } } additionalProperties: false } output: { type: "array" items: { type: "string" } } }