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
GameResponsePlatformsInner.md•1.06 KiB
# GameResponsePlatformsInner
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**value** | **str** | | [optional]
**name** | **str** | | [optional]
## Example
```python
from gamebrain.models.game_response_platforms_inner import GameResponsePlatformsInner
# TODO update the JSON string below
json = "{}"
# create an instance of GameResponsePlatformsInner from a JSON string
game_response_platforms_inner_instance = GameResponsePlatformsInner.from_json(json)
# print the JSON string representation of the object
print(GameResponsePlatformsInner.to_json())
# convert the object into a dict
game_response_platforms_inner_dict = game_response_platforms_inner_instance.to_dict()
# create an instance of GameResponsePlatformsInner from a dict
game_response_platforms_inner_from_dict = GameResponsePlatformsInner.from_dict(game_response_platforms_inner_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)