Skip to main content
Glama

Server Details

Read-only MCP server for the WebAssembly spec: instructions, types, sections, search, proposals.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.1/5 across 9 of 9 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool targets a distinct aspect of WebAssembly: instructions (get/list/search), proposals (list), spec sections (get/list/search), version info, and types. No overlapping purposes.

Naming Consistency5/5

All tools use consistent snake_case with verb_noun pattern: instruction_get, instruction_list, instruction_search, proposal_list, section_get, section_list, spec_search, spec_version, type_get.

Tool Count5/5

9 tools is well-scoped for a WebAssembly reference server, covering instructions, specs, proposals, types, and metadata without being overwhelming.

Completeness4/5

Covers core retrieval and search for instructions, specs, proposals, and types. Minor gaps like no dedicated proposal get or type list, but the set is sufficient for typical exploration tasks.

Available Tools

9 tools
instruction_getA
Read-only
Inspect

Fetch one WebAssembly instruction by mnemonic (i32.add) or binary opcode (0x6a, multi-byte 0xfd 0x89 0x02): opcode bytes, category, introducing version, stack type signature, validation/execution anchors + URLs, and traps (runtime trap conditions with canonical names; empty + can_trap:false when it never traps).

ParametersJSON Schema
NameRequiredDescriptionDefault
opcodeNoBinary opcode hex, e.g. `0x6a` or `0xfd 0x89 0x02`. Exact.
mnemonicNoInstruction mnemonic, e.g. `i32.add`. Case-insensitive, exact.
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description adds value beyond the readOnlyHint annotation by detailing the returned data structure, including the special handling of the 'traps' field (empty with can_trap:false when never traps). No contradictions with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, well-structured sentence that front-loads the action and then lists the returned components. No unnecessary words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given simplicity and readOnlyHint, the description sufficiently covers what the tool does and returns. It lists all key return fields (opcode bytes, category, version, signature, anchors, traps). Minor omission: does not explicitly state that it returns a single object, but this is implied.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema covers both parameters with descriptions. The description enhances this with examples (e.g., multi-byte opcode '0xfd 0x89 0x02') and clarifies exactness/case-insensitivity, providing actionable guidance beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'Fetch one WebAssembly instruction' with specific examples of input formats (mnemonic or binary opcode). It distinguishes from siblings like instruction_list (list all) and instruction_search (fuzzy search) by focusing on fetching a single instruction by exact identifier.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context on when to use the tool: when you know the exact mnemonic or opcode. It includes examples and notes on exactness and case-insensitivity, but does not explicitly mention alternatives or when not to use this tool.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

instruction_listA
Read-only
Inspect

Enumerate WebAssembly instructions, filterable by category, introduced_in (1.0|2.0|3.0), mnemonic prefix, and can_trap (only trapping / only non-trapping). Rows (incl. can_trap) sorted by opcode.

ParametersJSON Schema
NameRequiredDescriptionDefault
prefixNoMnemonic prefix, e.g. `i32.`. Case-insensitive.
can_trapNoKeep only instructions that can (true) / cannot (false) trap.
categoryNoInstruction category.
introduced_inNoIntroducing version.
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, covering safety. Description adds that rows are sorted by opcode and include can_trap, providing some behavioral context beyond the annotation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Single sentence efficiently conveys purpose, filters, and output ordering. No redundant words; all information earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema, description covers key aspects: enumeration, filters, sorting. Lacks details on default behavior when no filters applied, but sufficient for a list tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, baseline 3. Description adds value by noting 'Case-insensitive' for prefix and clarifying can_trap behavior. Provides examples for introduced_in values inline.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clearly states 'Enumerate WebAssembly instructions' with filter options. The verb 'enumerate' indicates a list operation. However, it does not explicitly differentiate from siblings like instruction_search or instruction_get.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Implies usage when needing a filtered list of instructions, but does not specify when to avoid this tool or suggest alternatives. No explicit when-to-use or when-not-to-use guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

proposal_listA
Read-only
Inspect

List WebAssembly proposals + phases. Filter by status (phase-0…phase-5, finished, inactive), phase (0–5), champion, affects (core|js-api|web-api), or contains.

ParametersJSON Schema
NameRequiredDescriptionDefault
phaseNoNumeric phase 0–5.
statusNoLifecycle status.
affectsNoAffected spec (finished only).
championNoChampion substring.
containsNoName/champion substring.
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true. Description adds filtering details but does not contradict annotations. No additional behavioral traits (e.g., pagination, error states) mentioned, but annotations lower the burden.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Single, front-loaded sentence with no extraneous words. Every word earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a list tool with all optional filters and clear schema descriptions, the description fully covers what the tool does and how to use it. No gaps remain.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, baseline is 3. Description adds value by enumerating status values and clarifying that 'affects' applies only to finished proposals, which goes beyond the schema's brief description.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

States clearly it lists WebAssembly proposals and phases. Verb 'list' and resource are specific, and it distinguishes from sibling tools about instructions, sections, and specs.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Lists available filters and their allowed values, giving clear usage context. No explicit when-not-to-use or alternatives, but sibling tools are for different resources, making confusion unlikely.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

section_getA
Read-only
Inspect

Fetch one spec clause by id or anchor across core / js-api / web-api (syntax-numtype, valid-unreachable, modules, streaming-modules, …): title, prose, cross-references, SpecTec formal refs, and rendered URL.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesClause id or anchor.
specNoWhich spec (default core).
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description confirms read-only behavior, consistent with the readOnlyHint annotation. It adds useful behavioral context by listing exactly what is returned (title, prose, cross-references, SpecTec refs, URL), which goes beyond the annotation and schema. No contradictions.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, compact sentence that efficiently conveys the tool's purpose, scope, and output. It includes examples without unnecessary elaboration, earning its place with no redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple read tool with two parameters and no output schema, the description fully informs about the return format (title, prose, cross-references, refs, URL) and scope. No important details are missing, and it works well with the existing schema and annotations.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so parameters are already documented. The description adds value by clarifying that 'id' can be an anchor, and providing examples ('syntax-numtype', 'valid-unreachable') and specifying acceptable values for 'spec' (core, js-api, web-api). This contextual enrichment helps an agent use parameters correctly.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly specifies the verb 'Fetch', resource 'one spec clause', and the method of identification (by id or anchor) across an explicit set of specs. It distinguishes from sibling tools like section_list (which lists multiple sections) and instruction_get (which gets instructions). The returned content is detailed, making the purpose unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Usage is implied through the description (use when needing a single clause by id or anchor), but there is no explicit guidance on when not to use this tool or how it compares to alternatives like instruction_search or spec_search. No exclusions or conditions are stated.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

section_listA
Read-only
Inspect

Navigate the clause tree of a spec (core / js-api / web-api), filterable by source path (syntax, valid, exec, binary, text, appendix), anchor_prefix, titled_only, and max_level.

ParametersJSON Schema
NameRequiredDescriptionDefault
pathNoSource path / prefix.
specNoWhich spec (default core).
max_levelNoCap heading depth.
titled_onlyNoDrop anchor-only blocks.
anchor_prefixNoId/anchor prefix.
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, and the description ('Navigate') is consistent. However, it does not disclose additional behavioral traits such as whether the result is a tree/list, pagination, or depth limits beyond 'max_level'. With annotations covering safety, a 3 is appropriate.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence that front-loads the main purpose and lists key parameters. It is informative without wasted words, though it could be slightly more structured (e.g., separating the core action from filters).

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 5 optional parameters, no output schema, and the complexity of navigating a clause tree, the description covers the tool's action and available filters. However, it does not describe the return format (e.g., nested tree or flat list), which would help the agent understand the output. Adequate but not fully complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with descriptions for all 5 parameters. The description adds value by explicitly enumerating the filterable fields and clarifying that 'path' is a source prefix and 'spec' options are core/js-api/web-api. This goes slightly beyond the schema but does not provide detailed syntax or format.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Navigate') and resource ('clause tree of a spec'), and explicitly lists filterable fields, clearly distinguishing it from sibling tools like 'section_get' (which likely retrieves a single section) and 'spec_search' (which search across specs).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no explicit when-to-use or when-not-to-use guidance, no mention of alternatives, and no context for selecting this tool over siblings. Usage is only implied by the purpose.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

spec_versionA
Read-only
Inspect

Return this server's package version plus the pinned upstream commit SHA(s) the bundled data was indexed from.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With readOnlyHint already annotated, the description adds value by specifying the exact content returned (version and commit SHAs), but doesn't discuss error conditions or side effects.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Single sentence, no filler, directly states the purpose and output.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple version query tool with no parameters and no output schema, the description fully explains what it returns.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

No parameters exist; schema coverage is 100% and description doesn't need to add parameter info. Baseline 4 for 0-parameter tools.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool returns the server's package version and pinned upstream commit SHA(s), which is specific and distinct from sibling tools about instructions, proposals, etc.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage when version info is needed but does not explicitly state when to use it instead of alternatives or provide any exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

type_getA
Read-only
Inspect

Look up a value type (i32, funcref, v128, …) or type form (functype, limits, memtype, …): classification, sibling members, defining clause prose, formal refs, and URL.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYesType or type-form name. Case-insensitive, exact.
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description adds value beyond the readOnlyHint annotation by specifying the exact output content (classification, sibling members, clause prose, formal refs, URL). It does not contradict annotations and provides meaningful behavioral context, though it omits details like error handling or pagination.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, well-structured sentence that front-loads the purpose and efficiently lists example inputs and output components. Every phrase earns its place with no verbosity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (one parameter, no output schema), the description covers the essential output details. However, it does not address behavior on invalid or missing type names, which would be helpful for completeness. Overall, it is largely sufficient for an agent.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema already describes the single parameter 'name' as 'Case-insensitive, exact.' The tool description does not add further parameter semantics; it only implies the parameter's role through the action statement. With 100% schema coverage, the baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function: 'Look up a value type or type form' and enumerates the output (classification, sibling members, prose, refs, URL). It is a specific verb-resource combination and is easily distinguished from sibling tools (instruction_, proposal_, section_, spec_) which target different entities.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description does not explicitly state when to use this tool versus alternatives, but the narrow purpose and distinct sibling names imply its usage context. No exclusions or alternative suggestions are provided; the guidance remains implicit.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Discussions

No comments yet. Be the first to start the discussion!

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources