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_send_osc.py•219 B
from server.juce_bridge import set_parameter
import time
print("Sending OSC message to JUCE: /setParameter testParam 0.42")
set_parameter("testParam", 0.42)
print("Check your JUCE logs if it arrived!")
time.sleep(0.5)