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
DefaultApiTest.php•2.49 kB
<?php
/**
* DefaultApiTest
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
/**
* GameBrain API
*
* GameBrain API
*
* The version of the OpenAPI document: 1.0.1
* Contact: mail@gamebrain.co
* Generated by: https://openapi-generator.tech
* Generator version: 7.8.0-SNAPSHOT
*/
/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Please update the test case below to test the endpoint.
*/
namespace OpenAPI\Client\Test\Api;
use \OpenAPI\Client\Configuration;
use \OpenAPI\Client\ApiException;
use \OpenAPI\Client\ObjectSerializer;
use PHPUnit\Framework\TestCase;
/**
* DefaultApiTest Class Doc Comment
*
* @category Class
* @package OpenAPI\Client
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
class DefaultApiTest extends TestCase
{
/**
* Setup before running any test cases
*/
public static function setUpBeforeClass(): void
{
}
/**
* Setup before running each test case
*/
public function setUp(): void
{
}
/**
* Clean up after running each test case
*/
public function tearDown(): void
{
}
/**
* Clean up after running all test cases
*/
public static function tearDownAfterClass(): void
{
}
/**
* Test case for detail
*
* Get Game Details.
*
*/
public function testDetail()
{
// TODO: implement
self::markTestIncomplete('Not implemented');
}
/**
* Test case for news
*
* Get Game News.
*
*/
public function testNews()
{
// TODO: implement
self::markTestIncomplete('Not implemented');
}
/**
* Test case for search
*
* Search Games.
*
*/
public function testSearch()
{
// TODO: implement
self::markTestIncomplete('Not implemented');
}
/**
* Test case for similar
*
* Get Similar Games.
*
*/
public function testSimilar()
{
// TODO: implement
self::markTestIncomplete('Not implemented');
}
/**
* Test case for suggest
*
* Get Game Suggestions.
*
*/
public function testSuggest()
{
// TODO: implement
self::markTestIncomplete('Not implemented');
}
}