We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/taurgis/sfcc-dev-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
PROPERTIES-ENCODING.md•505 B
# Properties Encoding & Special Characters
## Escaping
```properties
message.welcome=It''s a great day!
error.cant=You can''t do that
message.multiline=Line one\nLine two\nLine three
store.name=Cafe1 du Nord
```
## UTF-8
Always save `.properties` files as UTF-8 to preserve non-ASCII characters.
```properties
button.close=Schließen
message.success=Réussi!
store.name=店舗名
```
## Tips
- Avoid `encoding="off"` unless data is trusted.
- Keep translator comments near the keys they describe.