mcp-inspector-testing

mcp-inspector-testing is a skill for Claude Code, Codex from microsoft/wassette. It costs 58 tokens per session (725 once invoked), scanned A, original, MIT.

A procedure for checking a Wassette server through MCP Inspector, a command-line tool that lists and calls the server's available features over HTTP.

In plain words
What is it for?
Use it to build and start the server, list its tools, resources, and prompts, call tools, and inspect the results while debugging.
Why use it?
It catches problems in server startup, exposed tools, and tool behavior before changes are committed.

Skill for Claude CodeCodex

About the project

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.

microsoft/wassette · 941 stars · on GitHub · microsoft.github.io

Install

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.

agentmods
npx agentmods add skills/microsoft/wassette/mcp-inspector-testing
Any agent
npx skills add microsoft/wassette --skill mcp-inspector-testing
Clone the repo
git clone --depth 1 https://github.com/microsoft/wassette

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for mcp-inspector-testing

README.md
[![agentmods](https://agentmods.dev/badge/skills/microsoft/wassette/mcp-inspector-testing.svg)](https://agentmods.dev/skills/microsoft/wassette/mcp-inspector-testing)
Your own site
<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>
Per session 58 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 725 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 6d ago against content hash cf39cd47493e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

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.

.agents/skills/mcp-inspector-testing/SKILL.md · 75 lines

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

  1. Build your changes: just build.
  2. Start the server (Terminal 1): just run, or an example such as just run-fetch-rs. The server listens at 127.0.0.1:9001/mcp over Streamable HTTP.
  3. Drive it with the Inspector (Terminal 2) — always run tools/list first.
  4. 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"

Read the full file on GitHub · 75 lines

Changes

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.

  1. 6d ago First seen · 75 lines · 58 tokens per session scan A cf39cd47493e

Subscribe to this mod's changes

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.

Related

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.

maximhq/bifrost · 0 tokens

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…

maximhq/bifrost · 133 tokens

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.

jfarcand/mirroir-mcp · 85 tokens

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…

agentfront/frontmcp · 165 tokens

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.

stacklok/toolhive-studio · 45 tokens

ui-aqa-flow

Workflow for automated QA: integration and end-to-end UI test automation, page objects, etc.

griddynamics/rosetta · 24 tokens