Webvizio

Provides secure, structured access to Webvizio projects and tasks via MCP, including project management and task data retrieval.
  • typescript

4

GitHub Stars

typescript

Language

6 months ago

First Indexed

2 months ago

Catalog Refreshed

Documentation & install

Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.

Installation

Add the following to your MCP client configuration file.

Configuration

View docs
{
  "mcpServers": {
    "webvizio-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@webvizio/mcp-server"
      ],
      "env": {
        "WEBVIZIO_API_KEY": "<your-api-key>"
      }
    }
  }
}

The Webvizio MCP Server provides a secure, structured interface for interacting with Webvizio projects and development tasks via MCP clients. It automates the conversion of visual feedback and bug reports into context-rich developer tasks, enabling your AI coding tools to work faster and more accurately.

How to use

You will use an MCP client to connect to the Webvizio MCP Server. Begin by configuring the MCP client to point to the local server via a standard MCP URL or by running the local MCP process. Once connected, you can switch between projects, view open tasks assigned to you, and execute tasks using the agent. Your AI agent can request supportive data such as screenshots, logs, and network traces to complete tasks more reliably. After the agent finishes, you can review the work and mark the task as Done.

How to install

Prerequisites: install Node.js 18 or a newer version on your device.

  1. Prepare the MCP server configuration in your AI Client configuration file. Use the following configuration to register Webvizio as an MCP server.
"webvizio": {
   "command": "npx",
   "args": [
      "-y",
      "@webvizio/mcp-server"
   ],
   "env": {
      "WEBVIZIO_API_KEY": "<your-api-key>"
   }
}
  1. Generate and copy the API key for the MCP server from your AI Settings page.

  2. Insert the API key into the WEBVIZIO_API_KEY environment variable in your client configuration.

  3. Save the changes. Your MCP server is configured and ready to work.

Additional notes

The server uses a TypeScript-based MCP implementation to securely expose Webvizio data and actions to MCP clients. You can access a suite of tools to manage projects and tasks and to retrieve task-specific data such as descriptions, prompts, logs, and screenshots.

Available tools

get_projects

Fetch all available Webvizio projects.

get_current_project

Get details of the currently selected project.

set_project

Set the current Webvizio project to work with the project tasks.

get_tasks

Get the list of open tasks assigned to a user.

get_task_description

Get the task description.

get_task_prompt

Get an AI prompt to execute the task.

get_task_error_logs

Get the task error logs.

get_task_console_logs

Get the task console logs.

get_task_network_logs

Get the task network logs.

get_task_action_logs

Get the task action logs (Repro steps).

get_task_screenshot

Get the task screenshot.

close_task

Set task in Webvizio to Done status.

Built by
VeilStrat
AI signals for GTM teams
© 2026 VeilStrat. All rights reserved.All systems operational
Webvizio MCP Server - webvizio/mcp | VeilStrat