MCP.so
Sign In

@demoway/mcp-server

@DemoWayOfficial

About @demoway/mcp-server

Demoway MCP standalone service

Basic information

Category

Other

License

MIT license

Runtime

node

Transports

stdio

Publisher

DemoWayOfficial

Config

Add this server to your MCP-compatible client using the configuration below.

{
  "mcpServers": {
    "demoway": {
      "command": "npx",
      "args": [
        "-y",
        "@demoway/mcp-server@latest"
      ],
      "env": {
        "DEMOWAY_API_KEY": "<YOUR_API_KEY>"
      }
    }
  }
}

Tools

2

Search step by keyword in a demo

Download demo's step pretty html

Overview

What is @demoway/mcp-server?

@demoway/mcp-server is a Model Context Protocol (MCP) server implementation that provides standardized MCP interface services for DemoWay. It allows AI agents to search and download demo steps via two tools. The server is intended for developers integrating DemoWay content into AI workflows.

How to use @demoway/mcp-server?

Install and configure the server in your MCP client using npm (npx -y @demoway/mcp-server@latest) with a DEMOWAY_API_KEY environment variable and an optional --region flag (world or china). For local development, use tsx to run the source index file with a local server URL.

Key features of @demoway/mcp-server

  • Search for demo steps by keyword using search_demo_step
  • Download a demo step's pretty HTML using download_demo_step_pretty_html
  • Supports two regions: world and china
  • Uses environment variable for API key authentication
  • Easy to run via npx without global install

Use cases of @demoway/mcp-server

  • AI assistants fetching step-by-step demo instructions from DemoWay
  • Automating the retrieval of pretty HTML documentation for demo steps
  • Integrating DemoWay content into chatbots or automated help systems
  • Prototyping and testing DemoWay MCP integrations locally

FAQ from @demoway/mcp-server

What tools does @demoway/mcp-server provide?

It provides two tools: search_demo_step (search steps by keyword) and download_demo_step_pretty_html (download a demo step's pretty HTML).

How do I configure @demoway/mcp-server?

Use the JSON configuration in your MCP client with command: "npx", args: ["-y", "@demoway/mcp-server@latest", "--region={world,china}"], and set DEMOWAY_API_KEY in the env field.

What dependencies or runtime does @demoway/mcp-server require?

It runs via Node.js with the npx command (or tsx for local development). No additional global dependencies are needed for production use.

Where does @demoway/mcp-server get data from?

The server accesses DemoWay's API using the provided DEMOWAY_API_KEY. No local data is used; all data comes from DemoWay's cloud service.

What is the region parameter for?

The --region flag accepts world or china to specify which DemoWay instance to use. This is set in the server arguments.

Comments

More Other MCP servers