@luorivergoddess/mcp-geo
一个使用 Asymptote 生成精确几何图像的 MCP(模型上下文协议)服务器。该服务器允许与 MCP 兼容的 AI 模型通过提供 Asymptote 代码来请求图像生成。
先决条件
在使用此服务器之前,请确保已安装以下软件:
- Node.js :建议使用 16.x 或更高版本。您可以从nodejs.org下载。
- Asymptote :这是一个关键依赖项。asy
asy
行工具必须已安装,并且可在系统 PATH 中访问。- 请访问Asymptote 官方网站获取下载和详细安装说明。
- 常见安装方法:
- macOS(通过 Homebrew):
brew install asymptote
- Debian/Ubuntu Linux:
sudo apt-get install asymptote
- **Windows:**通常作为 TeX 发行版(例如 MiKTeX 或 TeX Live)的一部分安装。请确保将 Asymptote 的
bin
目录添加到 PATH 中。
- macOS(通过 Homebrew):
- 服务器将在启动时尝试检查
asy -version
,如果未找到则打印错误。
安装
要全局安装此包(如果您打算直接运行connect
命令)或作为另一个项目中的依赖项:
如果您已经克隆了存储库并希望在本地运行它以进行开发:
- 克隆存储库。
- 安装依赖项:
npm install
- 构建项目:
npm run build
用法
启动服务器
一旦软件包安装完毕(例如,全局安装或本地链接),您就可以使用软件包提供的connect
命令启动 MCP 服务器。此命令旨在由 MCP 客户端调用。
或者,如果您已经克隆了存储库并构建了它:
服务器将启动并使用@modelcontextprotocol/sdk
监听 stdin/stdout 上的 JSON-RPC 消息。
MCP 客户端集成
配置兼容 MCP 的客户端(例如,带有 Copilot Agent 模式的 VS Code、Claude Desktop)以使用此服务器。这通常需要告诉客户端如何启动服务器,即npx @luorivergoddess/mcp-geo connect
命令。
可用工具: renderGeometricImage
该服务器公开了一个主要工具:
- 名称:
renderGeometricImage
- **描述:**从 Asymptote 代码渲染图像。
- 输入模式:
- **输出:**该工具返回一个包含内容部分数组的
CallToolResult
。- 如果成功,它将包含一个
ImageContent
部分:type: "image"
mimeType: "image/svg+xml"
或"image/png"
data: "<base64_encoded_image_data>"
- 它还可能包括来自 Asymptote 的日志的
TextContent
部分。 - 如果发生错误,它会抛出
McpError
。
- 如果成功,它将包含一个
renderGeometricImage
调用示例( arguments
字段为 JSON):
客户端兼容性说明:
- 一些 MCP 客户端可能对支持的图像 MIME 类型有限制。
- 例如,如果您将此服务器与不支持
image/svg+xml
的客户端(例如,据报道“Cherry Studio”的某些版本或配置)一起使用,请确保通过在工具调用参数中包含"outputParams": { "format": "png" }
来请求png
格式。如果未指定格式,服务器默认为svg
。
作者
罗河女神
执照
国际学习中心
Tools
MCP 服务器通过提供 Asymptote 代码使 AI 模型能够生成精确的几何图像,支持 SVG 和 PNG 输出格式。
Related MCP Servers
- AsecurityAlicenseAqualityEnables the generation of images using Together AI's models through an MCP server, supporting customizable parameters such as model selection, image dimensions, and output directory.Last updated -14JavaScriptMIT License
- AsecurityFlicenseAqualityAn advanced MCP server for Cline that leverages EverArt's AI models to generate vector and raster images, supporting flexible storage, multiple formats, and robust image generation capabilities.Last updated -31JavaScript
- AsecurityAlicenseAqualityA MCP server that enables Claude and other MCP-compatible assistants to generate images from text prompts using Together AI's image generation models.Last updated -12TypeScriptMIT License
- -securityAlicense-qualityA FastMCP server implementation that provides a standardized interface for accessing AI models hosted on Replicate's API, currently supporting image generation with customizable parameters.Last updated -2PythonMIT License