Used by 1 plugin
WASM build integration for browser extensions using wasm-pack and wasm-bindgen
Deploys WebAssembly browser extensions using wasm-pack and wasm-bindgen build tools.
Add to your .mcp.json:
{
"mcpServers": {
"wasm-bindgen": {
"command": "cargo",
"args": [
"run",
"--manifest-path",
"${HOME}/.local/share/mcp/wasm-bindgen-mcp/Cargo.toml",
"--",
"--target-dir",
".output/wasm"
],
"env": {
"WASM_TARGET": "web",
"WASM_PACK_PATH": "wasm-pack",
"WASM_EXTENSION_MODE": "true"
}
}
}
}cargoWASM_TARGET=webWASM_PACK_PATH=wasm-packWASM_EXTENSION_MODE=true