We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/oraios/serena'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
print_language_list.py•420 B
"""
Prints the list of supported languages, for use in the project.yml template
"""
from solidlsp.ls_config import Language
if __name__ == "__main__":
lang_strings = sorted([l.value for l in Language])
max_len = max(len(s) for s in lang_strings)
fmt = f"%-{max_len+2}s"
for i, l in enumerate(lang_strings):
if i % 5 == 0:
print("\n# ", end="")
print(" " + fmt % l, end="")