本项目是一个 Model Context Protocol (MCP) 服务器,可通过编程方式创建 Whimsical 图表。它与 Whimsical 的 API 集成,利用 Mermaid 标记来生成图表,为用户提供便捷的图表创建体验。
本 MCP 服务器能与 Whimsical 的 API 集成,借助 Mermaid 标记生成图表。下面为你展示使用示例。
若要自动通过 Smithery 安装适用于 Claude Desktop 的 Whimsical MCP Server,可使用以下命令:
npx -y @smithery/cli install BrockReece/whimsical-mcp-server --client claude
# 克隆仓库
git clone https://github.com/BrockReece/whimsical-mcp-server.git
# 安装依赖项
yarn install
# 构建项目
yarn build
需更新 MCP 客户端的配置,使其指向此仓库的 dist 文件夹。示例如下:
{
"mcpServers": {
"whimsical": {
"command": "node",
"args": [
"/path/to/this/repo/whimsical-mcp-server/dist/index.js"
]
}
}
}
以下是一个使用此 MCP 服务器和 Claude 创建的复杂系统架构图示例,展示了 MCP 架构本身:
此项目遵循 MIT License 许可协议。