
R语言
STDIO支持R可视化和脚本执行的MCP服务器
支持R可视化和脚本执行的MCP服务器
A specialized Model Context Protocol (MCP) server that enables AI models to generate data visualizations using R's ggplot2 library and execute R scripts.
This MCP server provides a streamlined interface for creating statistical visualizations and executing R scripts without requiring direct access to an R environment. It exposes two MCP tools:
render_ggplot
: Generates visualizations from R code containing ggplot2 commandsexecute_r_script
: Executes any R script and returns the text output# Build the Docker image task docker:build # Run the server in Docker task docker:run
The server can be run in Docker while preserving stdin/stdout communication, which is essential for MCP:
# Build and run using docker-compose ./start_server.sh --docker
Or set an environment variable:
USE_DOCKER=true ./start_server.sh
This approach ensures that stdin and stdout are properly connected between the host and the container, allowing seamless MCP communication.
To use this server with an MCP client, configure it in your MCP settings file:
{ "mcpServers": { "r-server": { "command": "/path/to/r-server", "disabled": false, "autoApprove": [] } } }
{ "mcpServers": { "r-server": { "command": "/path/to/start_server.sh", "args": ["--docker"], "disabled": false, "autoApprove": [] } } }
The MCP client will automatically communicate with the server using stdio transport, which is the recommended approach for stability and reliability. The dockerized version maintains this communication pattern while providing isolation and dependency management.
Creative Commons Attribution-NonCommercial 4.0 International (CC-BY-NC 4.0)
This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License.
See the LICENSE file for details.