Stats
Actions
Tags
Help us improve
Share bugs, ideas, or general feedback.
Local Rust-based MCP server providing WASM build integration for browser extensions using wasm-pack and wasm-bindgen. Configurable via WASM_TARGET, WASM_PACK_PATH, and WASM_EXTENSION_MODE.
npx claudepluginhub arustydev/agents --plugin browser-extension-devCopy this JSON into your .mcp.json to enable this server
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"
}
}
}
}Server configuration and connection parameters
cargoCommand-line arguments passed to the server process
Environment variables set when the server starts
WASM_TARGET=webWASM_PACK_PATH=wasm-packWASM_EXTENSION_MODE=trueDeclared capabilities of this MCP server
Share bugs, ideas, or general feedback.