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
game_news_response.lua•595 B
--[[
GameBrain API
GameBrain API
The version of the OpenAPI document: 1.0.1
Contact: mail@gamebrain.co
Generated by: https://openapi-generator.tech
]]
-- game_news_response class
local game_news_response = {}
local game_news_response_mt = {
__name = "game_news_response";
__index = game_news_response;
}
local function cast_game_news_response(t)
return setmetatable(t, game_news_response_mt)
end
local function new_game_news_response(news)
return cast_game_news_response({
["news"] = news;
})
end
return {
cast = cast_game_news_response;
new = new_game_news_response;
}