We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ddsky/gamebrain-api-clients'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
search_suggestion_response.lua•692 B
--[[
GameBrain API
GameBrain API
The version of the OpenAPI document: 1.0.1
Contact: mail@gamebrain.co
Generated by: https://openapi-generator.tech
]]
-- search_suggestion_response class
local search_suggestion_response = {}
local search_suggestion_response_mt = {
__name = "search_suggestion_response";
__index = search_suggestion_response;
}
local function cast_search_suggestion_response(t)
return setmetatable(t, search_suggestion_response_mt)
end
local function new_search_suggestion_response(results)
return cast_search_suggestion_response({
["results"] = results;
})
end
return {
cast = cast_search_suggestion_response;
new = new_search_suggestion_response;
}