We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/EricA1019/CTS_MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
edge_cases.gd•417 B
extends Node
# Edge cases: comments, whitespace, unusual formatting
# This is NOT a signal (commented out)
# signal commented_signal(value: int)
signal weird_spacing ( param1 : int , param2:String)
signal trailing_comma(a: int, b: int,)
# Signal with comment on same line
signal inline_comment(value: int) # health value
signal indented_signal(x: float)
signal no_params
signal no_params_with_parens()