奇思妙想的 MCP 服务器
一个模型上下文协议 (MCP) 服务器,支持以编程方式创建 Whimsical 图表。该服务器与 Whimsical 的 API 集成,可以从 Mermaid 标记生成图表。
演示
下面是使用此 MCP 服务器和 Claude 创建的复杂系统架构图的示例 - 它展示了模型上下文协议 (MCP) 架构本身:

Related MCP server: Mermaid-MCP
特征
使用 MCP 客户端(Claude、Windsurf 等)生成的 Mermaid 标记创建 Whimsical 图表
返回 Whimsical 图表 URL 和 base64 编码图像,以允许客户端迭代其原始标记
安装
通过 Smithery 安装
要通过Smithery自动为 Claude Desktop 安装 Whimsical MCP Server:
npx -y @smithery/cli install BrockReece/whimsical-mcp-server --client claude
手动安装
# Clone the repository
git clone https://github.com/BrockReece/whimsical-mcp-server.git
# Install dependencies
yarn install
# Build the project
yarn build
与 MCP 客户端集成
更新 MCP 客户端的配置以指向此存储库的 dist 文件夹,例如:
{
"mcpServers": {
"whimsical": {
"command": "node",
"args": [
"/path/to/this/repo/whimsical-mcp-server/dist/index.js"
]
}
}
}
执照
该项目已获得 MIT 许可。