microsoft/wassette is a runtime that loads WebAssembly Components as tools exposed through the Model Context Protocol (MCP), an interface that lets AI agents use external capabilities. It is for extending coding agents with reusable tools while isolating those tools in a Wasmtime security sandbox. The catalogue skills, instructions, and agent help configure and operate Wassette with supported MCP clients.
Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/microsoft/wassette/mcp-inspector-testingnpx skills add microsoft/wassette --skill mcp-inspector-testinggit clone --depth 1 https://github.com/microsoft/wassetteWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/microsoft/wassette/mcp-inspector-testing)<a href="https://agentmods.dev/skills/microsoft/wassette/mcp-inspector-testing"><img src="https://agentmods.dev/badge/skills/microsoft/wassette/mcp-inspector-testing.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00058 | $0.00725 |
| Opus 5 | $0.00029 | $0.00362 |
| Sonnet 5 | $0.00012 | $0.00145 |
| Haiku 4.5 | $0.00006 | $0.00072 |
Grade A, and why
mcp-inspector-testing scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 75 lines — stays where its author put it; the contents beside it link to each section on GitHub.
mcp-inspector-testing skill
Test server-facing Wassette changes with the MCP Inspector before committing. This confirms the server starts, tools are exposed over MCP, tool calls behave as expected, and no regressions slipped in.
Workflow
- Build your changes:
just build. - Start the server (Terminal 1):
just run, or an example such asjust run-fetch-rs. The server listens at127.0.0.1:9001/mcpover Streamable HTTP. - Drive it with the Inspector (Terminal 2) — always run
tools/listfirst. - Capture Inspector output when it helps demonstrate or debug the change.
Running the server
just run # Default server
just run RUST_LOG='debug' # Verbose logs
just run-filesystem # Example: filesystem component
just run-fetch-rs # Example: fetch component
just run-memory # Example: memory component
just run-get-weather # Example: weather (needs OPENWEATHER_API_KEY)
Inspecting with the MCP Inspector
BASE=http://127.0.0.1:9001/mcp
# List capabilities (run tools/list first)
npx @modelcontextprotocol/inspector --cli $BASE --transport http --method tools/list
npx @modelcontextprotocol/inspector --cli $BASE --transport http --method resources/list
npx @modelcontextprotocol/inspector --cli $BASE --transport http --method prompts/list
# Call a tool
npx @modelcontextprotocol/inspector --cli $BASE --transport http \
--method tools/call --tool-name mytool --tool-arg key=value
# Multiple args, or JSON for complex parameters
npx @modelcontextprotocol/inspector --cli $BASE --transport http \
--method tools/call --tool-name mytool --tool-arg key1=v1 --tool-arg key2=v2
npx @modelcontextprotocol/inspector --cli $BASE --transport http \
--method tools/call --tool-name mytool --tool-arg 'options={"format":"json","max_tokens":100}'
# Custom headers (e.g. auth testing)
npx @modelcontextprotocol/inspector --cli $BASE --transport http \
--method tools/list --header "X-API-Key: your-api-key"
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 6d ago First seen · 75 lines · 58 tokens per session scan A cf39cd47493e
mcp-inspector-testing is a skill published in the GitHub repository microsoft/wassette (941 stars, last pushed 2d ago), licensed MIT. It adds 58 tokens to every session and 725 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
e2e-test
Skill "e2e-test" from maximhq/bifrost, covering playwright e2e testing, usage, workflow overview, auto-update workflow (sync mode) and step 0: detect what changed.
harness-test-writer
Add regression test cases to the Bifrost provider harness (the Postman collection run via make run-provider-harness-test) based on a merged PR or a GitHub issue. Fetches the PR/issue, traces the affected wire path in the codebase, checks existing harness coverage, designs cases following harness conventions, inserts…
mirroir-onboard
Onboard a consumer web app to mirroir's .mirroir/ dotfile by EXPLORING the running app (chrome-devtools-mcp) — derive real selectors from the accessibility tree, exercise each surface's primary action, emit the .mirroir/ tree, and validate by LIVE REPLAY with a self-heal loop. Reject shallow "page renders" coverage.
frontmcp-authorities
Use when implementing authorization and access control for FrontMCP tools, resources, prompts, or skills, deciding who may invoke what. Covers the RBAC, ABAC, and ReBAC models and when to choose each; JWT claims mapping per identity provider (Auth0, Keycloak, Okta, Cognito, Frontegg); reusable named authority…
testing-api-assertions
Verify API requests in tests. Use when testing that correct API calls are made for create, update, or delete operations. Use when testing mutations, form submissions, or actions with backend side effects.
ui-aqa-flow
Workflow for automated QA: integration and end-to-end UI test automation, page objects, etc.