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
SearchResponseResultsInnerRating.md•1.15 KiB
# SearchResponseResultsInnerRating
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**mean** | **float** | | [optional]
**count** | **float** | | [optional]
## Example
```python
from gamebrain.models.search_response_results_inner_rating import SearchResponseResultsInnerRating
# TODO update the JSON string below
json = "{}"
# create an instance of SearchResponseResultsInnerRating from a JSON string
search_response_results_inner_rating_instance = SearchResponseResultsInnerRating.from_json(json)
# print the JSON string representation of the object
print(SearchResponseResultsInnerRating.to_json())
# convert the object into a dict
search_response_results_inner_rating_dict = search_response_results_inner_rating_instance.to_dict()
# create an instance of SearchResponseResultsInnerRating from a dict
search_response_results_inner_rating_from_dict = SearchResponseResultsInnerRating.from_dict(search_response_results_inner_rating_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)