A comprehensive Mendix Studio Pro plugin that extracts diagnostic information, logs, and project metadata to assist developers in troubleshooting, debugging, and forum support requests.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Claude Code PATH 诊断脚本 | |
| # 用于定位 Windows 上 claude.cmd 找不到的问题 | |
| $ErrorActionPreference = "Continue" | |
| Write-Host "`n========================================" -ForegroundColor Cyan | |
| Write-Host " Claude Code PATH 诊断工具" -ForegroundColor Cyan | |
| Write-Host "========================================`n" -ForegroundColor Cyan | |
| # 1. 检查 claude 命令是否可用 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Claude Code Base URL 配置检查工具 | |
| # 使用方法: irm http://your-host:port/check_claude.ps1 | iex | |
| [Console]::OutputEncoding = [System.Text.Encoding]::UTF8 | |
| $OutputEncoding = [System.Text.Encoding]::UTF8 | |
| Write-Host "========================================" -ForegroundColor Cyan | |
| Write-Host " Claude Code Base URL 配置检查工具" -ForegroundColor Cyan | |
| Write-Host "========================================" -ForegroundColor Cyan | |
| Write-Host "" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| DOMAIN ANALYSIS: AmazonBedrockConnector | |
| ------------------------------------------------------------ | |
| Entities (117 found): | |
| [Entity] ListFoundationModelsResponse [Non-Persistable] // This entity is the response for the Amazon Bedrock ListFoundationalModels action.\n\nAPI reference:\nhttps://docs.aws.amazon.com/bedrock/latest/APIReference/API_ListFoundationModels.html | |
| [Entity] InvokeModelRequest [Non-Persistable] extends AWSAuthentication.AbstractRequest // This entity is the request for the Amazon Bedrock InvokeModel action.\n\nAPI reference:\nhttps://docs.aws.amazon.com/bedrock/latest/APIReference/API_InvokeModel.html\n\nJava SDK documentation:\nhttps://sdk.amazonaws.com/java/api/latest/software/amazon/awssdk/services/bedrockruntime/model/InvokeModelRequest.html | |
| - ModelID: String[Unlimited] // The ModelID attribute describes identifier of the model and is a required parameter. | |
| - RequestBody: String[Unlimited] // The RequestBody attribute describes the JSON request body of the specific model to inv |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Mendix DevTool: Inspector & Opener | |
| // @namespace http://mendix.dev/ | |
| // @version 2.0 | |
| // @description Visual inspector for Mendix to open Layouts, Pages, and Widgets in Studio Pro via Python RPC. | |
| // @author Dev | |
| // @match http://localhost:8082/* | |
| // @grant GM_xmlhttpRequest | |
| // @grant GM_addStyle | |
| // @run-at document-end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name 网页元素截图工具 | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.2 | |
| // @description 直接利用 @require 加载库,解决 window.htmlToImage 为 undefined 的问题 | |
| // @author YourName | |
| // @match *://*/* | |
| // @grant GM_registerMenuCommand | |
| // @grant GM_addStyle | |
| // @require https://cdnjs.cloudflare.com/ajax/libs/html-to-image/1.11.11/html-to-image.min.js |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ----------------------------------------------------------- | |
| # PowerShell 下载与安装脚本 | |
| # ----------------------------------------------------------- | |
| # 定义下载链接和目标文件名 | |
| $DownloadUrl = "https://github.com/PowerShell/PowerShell/releases/download/v7.5.4/PowerShell-7.5.4-win-x64.msi" | |
| $FileName = "PowerShell-7.5.4-win-x64.msi" | |
| $DownloadPath = Join-Path $env:TEMP $FileName | |
| Write-Host "--- 1. 正在检查 PowerShell 版本 ---" -ForegroundColor Cyan |
Of course, here is the updated README.md file reflecting the changes in the provided code, including the new MCP server controls.
本系统是一个基于Mendix Studio Pro扩展API构建的Web应用,包含一个前端UI(index.html)和一个后端脚本(main.py)。它现在集成了Mendix Copilot (MCP) 服务,允许用户通过UI直接控制后端的MCP服务器生命周期。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <script src="assets/tailwindcss.js"></script> | |
| <style> | |
| /* Simple transition for collapsible sections */ | |
| .collapsible-content { | |
| max-height: 0; |
NewerOlder