We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ChiR24/Unreal_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
AGENTS.md•821 B
# wasm
Rust-based performance layer for math and property parsing.
## OVERVIEW
High-performance Rust modules compiled to WebAssembly with TypeScript fallbacks.
## STRUCTURE
```
wasm/
├── src/
│ ├── lib.rs # WASM exports
│ ├── property_parser.rs # UE property string parsing
│ └── transform_math.rs # Matrix/Vector math
└── Cargo.toml
```
## CONVENTIONS
- **Safety**: No `unsafe` blocks unless absolutely required for FFI.
- **Fallbacks**: Every WASM function must have a matching TS implementation in `src/wasm/index.ts`.
- **Types**: Use `wasm-bindgen` for type generation.
## ANTI-PATTERNS
- **Heavy FFI**: Avoid frequent small calls between TS and Rust; batch data instead.
- **Large Binaries**: Minimize dependency tree to keep `.wasm` size under 500KB.