From 1d6e9ed6f9b9dc9ce85935bde985f10ccac95e0b Mon Sep 17 00:00:00 2001 From: Edwin Kullu Date: Thu, 4 Sep 2025 15:37:51 +0530 Subject: [PATCH] Add UXBoost MCP server --- uxboost/README.md | 12 ++++++++++++ uxboost/server.json | 27 +++++++++++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 uxboost/README.md create mode 100644 uxboost/server.json diff --git a/uxboost/README.md b/uxboost/README.md new file mode 100644 index 0000000000..a7ae88cab9 --- /dev/null +++ b/uxboost/README.md @@ -0,0 +1,12 @@ +# UXBoost MCP Server + +This directory contains the manifest for the UXBoost Model Context Protocol (MCP) server. + +## Description +The UXBoost MCP server provides tools for UXBoost analyses and agent sessions, enabling detailed insights into user experience and interaction. + +## Docker Image +The Docker image for the UXBoost MCP server is available at `prsm323/uxboost-mcp:latest`. + +## API Documentation +For more information on the available APIs and tools, please refer to the official documentation: [https://api.uxboost.ai/api-docs](https://api.uxboost.ai/api-docs) diff --git a/uxboost/server.json b/uxboost/server.json new file mode 100644 index 0000000000..e1d14b775d --- /dev/null +++ b/uxboost/server.json @@ -0,0 +1,27 @@ +{ + "id": "uxboost", + "name": "UXBoost", + "description": "MCP server for UXBoost analyses and agent sessions", + "image": "prsm323/uxboost-mcp:latest", + "docs": "https://api.uxboost.ai/api-docs", + "icon": "https://raw.githubusercontent.com/edwinkullu51/mcp-server/main/icon.svg", + "env": { + "API_BASE_URL": { + "default": "https://api.uxboost.ai", + "description": "API base URL" + } + }, + "tools": [ + "perform_static_analysis", + "perform_dynamic_analysis", + "create_agent_session", + "get_session_data", + "list_sessions", + "compare_sessions", + "get_analysis_report", + "export_session_data" + ], + "tags": ["web", "ux", "analysis", "crawler"] +} + +