wasm-mcp
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.
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.
Tool Definition Quality
Average 4.1/5 across 9 of 9 tools scored.
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.
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.
9 tools is well-scoped for a WebAssembly reference server, covering instructions, specs, proposals, types, and metadata without being overwhelming.
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 toolsinstruction_getARead-onlyInspect
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).
| Name | Required | Description | Default |
|---|---|---|---|
| opcode | No | Binary opcode hex, e.g. `0x6a` or `0xfd 0x89 0x02`. Exact. | |
| mnemonic | No | Instruction mnemonic, e.g. `i32.add`. Case-insensitive, exact. |
Tool Definition Quality
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.
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.
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.
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.
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.
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_listARead-onlyInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| prefix | No | Mnemonic prefix, e.g. `i32.`. Case-insensitive. | |
| can_trap | No | Keep only instructions that can (true) / cannot (false) trap. | |
| category | No | Instruction category. | |
| introduced_in | No | Introducing version. |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
instruction_searchARead-onlyInspect
Ranked free-text search across instruction mnemonics, categories, and opcode hex. Returns hits with a matched_on field.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max hits. | |
| query | Yes | Search text. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds behavioral context beyond the readOnlyHint annotation by specifying that search results are ranked and include a 'matched_on' field, which helps the agent understand the tool's behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, front-loaded with key functionality (search scope) and a note on output, with no unnecessary words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given simple parameters, no output schema, and read-only nature, the description sufficiently covers the tool's purpose and a key output field; could slightly benefit from mentioning result count or sorting defaults.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Even though schema descriptions cover both parameters, the description adds semantic meaning by explaining what fields are searched (mnemonics, categories, opcode hex) and that results include a 'matched_on' field, providing value beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states it performs ranked free-text search across specific fields (mnemonics, categories, opcode hex) and mentions the 'matched_on' output field, distinguishing it from sibling tools like instruction_get or instruction_list.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Implies usage for free-text search but does not explicitly state when to use this tool over alternatives like instruction_get or spec_search, nor does it provide exclusion criteria.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
proposal_listARead-onlyInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| phase | No | Numeric phase 0–5. | |
| status | No | Lifecycle status. | |
| affects | No | Affected spec (finished only). | |
| champion | No | Champion substring. | |
| contains | No | Name/champion substring. |
Tool Definition Quality
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.
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.
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.
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.
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.
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_getARead-onlyInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Clause id or anchor. | |
| spec | No | Which spec (default core). |
Tool Definition Quality
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.
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.
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.
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.
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.
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_listARead-onlyInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| path | No | Source path / prefix. | |
| spec | No | Which spec (default core). | |
| max_level | No | Cap heading depth. | |
| titled_only | No | Drop anchor-only blocks. | |
| anchor_prefix | No | Id/anchor prefix. |
Tool Definition Quality
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.
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.
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.
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.
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.
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_searchARead-onlyInspect
Full-text search across clause anchors, titles, and prose of a spec (core / js-api / web-api). Ranked anchor-exact > title > anchor > prose, with snippets for body matches.
| Name | Required | Description | Default |
|---|---|---|---|
| spec | No | Which spec (default core). | |
| limit | No | Max hits. | |
| query | Yes | Search text. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description reveals ranking order (anchor-exact > title > anchor > prose) and snippet behavior for body matches, adding behavioral context beyond the readOnlyHint annotation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, front-loaded with purpose and scope, followed by ranking details. Every sentence adds value; no redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers what is searched and ranking details. Given no output schema, it provides snippets info. It could mention default spec but schema covers that. Complete enough for the tool's complexity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the schema fully documents parameters. The description does not add parameter specifics but supports understanding of search behavior. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'search', identifies the resource 'spec' with specific spec names, and distinguishes from sibling tools by focusing on clause anchors, titles, and prose of specifications.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit when-to-use or when-not-to-use guidance is provided. While the tool's purpose differentiates it from siblings like instruction_search, the description does not help an agent decide between them.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
spec_versionARead-onlyInspect
Return this server's package version plus the pinned upstream commit SHA(s) the bundled data was indexed from.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
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.
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.
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.
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.
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.
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_getARead-onlyInspect
Look up a value type (i32, funcref, v128, …) or type form (functype, limits, memtype, …): classification, sibling members, defining clause prose, formal refs, and URL.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Type or type-form name. Case-insensitive, exact. |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!