Wavedash
Server Details
Wavedash docs and workflow guidance for building and publishing browser games.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- wvdsh/ai
- GitHub Stars
- 0
- Server Listing
- Wavedash MCP Server
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 8 of 8 tools scored.
Each tool has a clearly distinct purpose: workflow, documentation retrieval, checklists, quickstart, SDK reference, planning, search, and config validation. No overlap.
Most tools follow verb_noun pattern with 'get_' prefix, but 'implementation_planner' deviates as a noun phrase, slightly reducing consistency.
8 tools is well-scoped for a documentation and planning assistant—not too few to cover needs, not too many to overwhelm.
The tool set comprehensively covers the stated domain: fetching docs, planning implementations, searching, and validating config. No obvious gaps for its read-only purpose.
Available Tools
8 toolswavedash_get_agent_workflowGet Wavedash Agent WorkflowARead-onlyInspect
Return a concise end-to-end workflow for AI agents creating a browser game from scratch and preparing it for Wavedash upload. Read-only and unauthenticated; upload still happens through the Wavedash CLI or Developer Portal.
| Name | Required | Description | Default |
|---|---|---|---|
| engine | No | Optional engine/framework, for example javascript, phaser, unity, godot, three.js, react, or custom. | |
| features | No | Optional requested Wavedash features, for example multiplayer, achievements, leaderboards, cloud-saves, ugc, players. |
Output Schema
| Name | Required | Description |
|---|---|---|
| text | Yes | Human-readable tool result text. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description confirms the read-only and unauthenticated nature, reinforcing the annotations. It also clarifies the upload process is separate, adding behavioral context beyond annotations without contradiction.
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 cover purpose and behavioral notes with no filler, achieving high conciseness while maintaining clarity.
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 low complexity (2 optional parameters, output schema exists), the description fully equips an agent to understand what the tool does, its constraints, and how it relates to the larger workflow.
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 description coverage is 100%, and the tool description repeats the parameter descriptions from the schema without adding new semantic information, meeting the baseline.
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 a concise end-to-end workflow for AI agents creating a browser game and preparing for Wavedash upload. It uses specific verbs and resource, and differentiates from sibling tools like wavedash_get_doc or wavedash_get_publishing_checklist.
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 notes that the tool is read-only and unauthenticated, and that upload happens via the CLI or Developer Portal, providing clear usage context. However, it does not explicitly state when to use this tool versus alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
wavedash_get_docGet Wavedash DocARead-onlyInspect
Fetch a full Wavedash docs page as Markdown by path or docs.wavedash.com URL. Read-only and unauthenticated.
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Docs path or URL, for example sdk/setup, engines/phaser, publishing/upload, or https://docs.wavedash.com/sdk/setup. |
Output Schema
| Name | Required | Description |
|---|---|---|
| text | Yes | Human-readable tool result text. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds behavioral context beyond annotations: it explicitly states 'Read-only and unauthenticated.' This informs the agent that no authentication is required and that the operation is safe, which is valuable and consistent with the annotations (readOnlyHint=true, destructiveHint=false).
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 primary action and output format. Every word serves a purpose, with no filler or 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?
Given the tool's simplicity (single parameter, output schema exists), the description covers essential aspects: input format, output format, read-only behavior, and authentication requirement. It is contextually complete for effective tool selection and invocation.
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 description coverage is 100% for the single parameter 'path', which is already well-documented with examples. The tool description simply repeats 'by path or URL' without adding new semantic detail beyond what the schema provides. 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 uses a specific verb ('Fetch') and clearly identifies the resource ('full Wavedash docs page as Markdown'). It explicitly mentions the input options (path or URL) and output format, making the tool's purpose unambiguous and distinct from sibling tools like wavedash_search_docs.
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 guidance on when to use this tool versus alternatives (e.g., wavedash_search_docs for searching, or other wavedash tools for different content). The description states it is read-only and unauthenticated, but does not explain usage context or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
wavedash_get_publishing_checklistGet Wavedash Publishing ChecklistARead-onlyInspect
Return Wavedash upload and publishing checklist guidance, optionally including an engine-specific docs page. Read-only and unauthenticated.
| Name | Required | Description | Default |
|---|---|---|---|
| engine | No | Optional engine/framework, for example unity, godot, phaser, three.js, react, rust, or custom. |
Output Schema
| Name | Required | Description |
|---|---|---|
| text | Yes | Human-readable tool result text. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond annotations (readOnlyHint), the description adds that the tool is unauthenticated and optionally includes engine-specific content. This provides useful behavioral context not present in 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, front-loaded sentence with zero waste. It conveys purpose, optionality, and safety in a compact form.
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 has one optional parameter and an output schema, the description is sufficient. It covers purpose, optional behavior, and safety, making it complete for this simple 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 description coverage is 100%, so the baseline is 3. The description's mention of 'engine-specific docs page' aligns with the schema but does not add new meaning beyond what the parameter description already provides.
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-resource pair: 'Return... checklist guidance.' It clearly distinguishes from sibling tools like wavedash_get_doc or wavedash_get_quickstart by focusing on publishing checklist guidance.
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 for publishing guidance and mentions 'Read-only and unauthenticated,' but does not explicitly state when to use this tool versus alternatives or provide any exclusion criteria.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
wavedash_get_quickstartGet Wavedash QuickstartARead-onlyInspect
Return the Wavedash setup path for a browser game, optionally including an engine and SDK features. Read-only and unauthenticated.
| Name | Required | Description | Default |
|---|---|---|---|
| engine | No | Optional engine/framework, for example phaser, unity, godot, three.js, react, rust, or custom. | |
| features | No | Optional Wavedash features, for example multiplayer, achievements, leaderboards, cloud-saves, ugc, players. |
Output Schema
| Name | Required | Description |
|---|---|---|
| text | Yes | Human-readable tool result text. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false. The description adds 'unauthenticated' which is a new behavioral trait beyond annotations. No contradiction. However, it does not disclose any other behaviors (e.g., what happens when engine is invalid).
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 concise sentences, front-loaded with purpose, and no wasted words. Every sentence serves a purpose.
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 simplicity of the tool, no required parameters, and an existing output schema, the description is mostly complete. It could mention that the returned path is a URL or structured object, but 'setup path' is sufficient.
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 already describes both parameters (engine, features) with descriptions. The description mentions 'optionally including an engine and SDK features' but adds no additional meaning or constraints 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 states a specific verb and resource ('Return the Wavedash setup path') and distinguishes from sibling tools by focusing on 'quickstart' and 'setup path' for browser games.
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 guidance on when to use this tool versus alternatives like wavedash_get_doc or wavedash_get_sdk_reference. Only states it is read-only and unauthenticated, but no context on prerequisites or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
wavedash_get_sdk_referenceGet Wavedash SDK ReferenceARead-onlyInspect
Fetch Wavedash SDK docs for a specific feature such as setup, multiplayer, achievements, leaderboards, cloud saves, UGC, players, events, or types. Read-only and unauthenticated.
| Name | Required | Description | Default |
|---|---|---|---|
| topic | Yes | SDK topic, for example setup, multiplayer, lobbies, p2p, achievements, stats, leaderboards, cloud-saves, ugc, players, cli, config. |
Output Schema
| Name | Required | Description |
|---|---|---|
| text | Yes | Human-readable tool result text. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint, and the description adds 'unauthenticated', which is not in annotations. No contradictions. This extra behavioral detail helps the agent assess prerequisites.
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, no waste. First sentence states purpose with examples, second adds behavioral constraints. Front-loaded and efficient.
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 single-parameter read-only tool with full schema coverage and an output schema, the description provides all necessary context. 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 description coverage is 100% for the 'topic' parameter, which already lists examples. The description repeats those examples but adds no deeper semantic meaning, so it meets the baseline for full schema coverage.
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 'Fetch' and resource 'Wavedash SDK docs', with specific examples of topics. It distinguishes from siblings like wavedash_get_doc and wavedash_search_docs by focusing on SDK reference.
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 notes the tool is 'Read-only and unauthenticated', which provides clear context for safe usage. It does not explicitly contrast with alternatives, but the listed examples and sibling names imply its specific scope.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
wavedash_implementation_plannerPlan Wavedash ImplementationARead-onlyInspect
Plan a Wavedash game implementation from the user's goal, engine, and requested features. Use this before making architecture claims, selecting SDK features, or writing Wavedash integration code. Read-only and unauthenticated.
| Name | Required | Description | Default |
|---|---|---|---|
| goal | Yes | What the user wants to build or integrate, including the game type and Wavedash-related outcome. | |
| engine | No | Optional engine/framework, for example phaser, unity, godot, three.js, react, rust, or custom. | |
| features | No | Optional requested Wavedash features, for example multiplayer, achievements, leaderboards, cloud-saves, ugc, players, paid-content, upload, or publishing. |
Output Schema
| Name | Required | Description |
|---|---|---|
| text | Yes | Human-readable tool result text. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint=true, and description adds 'Read-only and unauthenticated', confirming safe behavior. Additional context about planning nature beyond 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?
Two sentences, no wasted words. Purpose and usage are front-loaded.
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?
With output schema present, description need not explain returns. It covers why and when to use, and is complete for planning before integration.
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 baseline 3. Description lists parameter names but adds no additional meaning 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?
Description clearly states the tool plans a Wavedash game implementation, specifying verb 'Plan' and resource 'Wavedash game implementation'. It distinguishes from siblings by indicating it should be used before architecture claims or SDK selection.
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?
Explicitly tells when to use: 'Use this before making architecture claims, selecting SDK features, or writing Wavedash integration code'. While it doesn't state when not to use, the guidance is clear and actionable.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
wavedash_search_docsSearch Wavedash DocsARead-onlyInspect
Search official Wavedash docs for browser game development, SDK integration, engines, CLI, upload, and publishing. Read-only and unauthenticated.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of results to return. | |
| query | Yes | Search query, for example: sdk setup, multiplayer lobbies, unity webgl, build push. |
Output Schema
| Name | Required | Description |
|---|---|---|
| text | Yes | Human-readable tool result text. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false. The description adds 'unauthorized', which is useful context, but does not disclose other behaviors like pagination or result format. With good annotation coverage, the description adds modest value.
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: first covers purpose and scope, second covers behavior. No extraneous words, well-structured, and front-loaded with the most important information.
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 the tool's domain and safety profile. With annotations and output schema present, the description is sufficient. Minor gap: it doesn't mention that results are a list of documents, but the output schema likely covers that.
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 description coverage is 100%, so the schema already documents both query and limit parameters. The tool description's list of example topics (browser game dev, SDK, etc.) is present in the schema's query description, adding no new information. 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' and the resource 'official Wavedash docs', and specifies the scope of topics (browser game development, SDK, etc.). It distinguishes from sibling tools like wavedash_get_doc by focusing on search rather than retrieval of a specific document.
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 when to use the tool (when searching docs by keyword) but does not explicitly state when not to use it or provide alternatives. Sibling tools are listed but no direct comparison is made.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
wavedash_validate_configValidate Wavedash ConfigARead-onlyInspect
Validate pasted wavedash.toml text for basic Wavedash CLI config issues. This does not read files; provide the config text as input.
| Name | Required | Description | Default |
|---|---|---|---|
| toml | Yes | Contents of wavedash.toml. |
Output Schema
| Name | Required | Description |
|---|---|---|
| text | Yes | Human-readable tool result text. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false. The description adds that it does not read files, which is consistent and provides additional clarity. It also mentions 'basic' issues, setting expectations about scope.
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, zero wasted words. Purpose is stated first, followed by a key behavioral note. Optimal length for a simple tool.
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 param, output schema exists, no enums), the description is fully adequate. It covers what the tool does, its input, and a critical behavioral constraint.
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 a clear description for 'toml'. The description reinforces that the parameter is the config text. No additional semantic details beyond schema are provided, but none are needed.
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 'validate' and the resource 'pasted wavedash.toml text', specifying it checks for 'basic Wavedash CLI config issues'. It distinguishes from file reading by explicitly saying 'This does not read files'. This differentiates it effectively from sibling tools.
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 usage context: use when you have pasted config text, not for files. It implicitly advises against using it for file validation. However, it does not explicitly mention alternatives among siblings for config issues.
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!
Related MCP Servers
- Alicense-qualityBmaintenanceEnables building, publishing, and improving PWA games from your editor by scaffolding games, updating files, and auto-deploying to a live URL.MIT
- Flicense-qualityCmaintenanceCurated game development knowledge for AI coding tools. 144 docs covering MonoGame, Godot, game design, and programming patterns.2

antics-mcpofficial
AlicenseAqualityBmaintenanceEnables AI agents to deploy multiplayer web games as playable URLs with rooms, live state sync, and leaderboards, all through a single tool call.49554Inno Setup
Rosh MCP Serverofficial
AlicenseAqualityDmaintenanceEnables AI to create and publish interactive web apps, games, and 3D scenes using Rosh, a plain-English programming language. It supports compilation to HTML5 canvas, Phaser, or Three.js.9MIT
Your Connectors
Sign in to create a connector for this server.