We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/TYLERSFOSTER/MCPSynthController'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test_list_parameters.py•297 B
from server.juce_bridge import list_parameters
def test_list_parameters():
"""Ensure that list_parameters returns a non-empty list of strings."""
params = list_parameters()
assert isinstance(params, list)
assert len(params) > 0
assert all(isinstance(p, str) for p in params)