MCP-GLSP

MCP-GLSP

Enables AI-driven graphical diagram creation and manipulation using natural language, with support for BPMN workflows, analysis, and manual editing via the Model Context Protocol.

Category
访问服务器

README

MCP-GLSP: AI-Native Graphical Modeling Platform

🚀 The world's first AI-native implementation of the Graphical Language Server Protocol (GLSP) using the Model Context Protocol (MCP) for universal AI agent compatibility.

🌟 Revolutionary Features

  • 🤖 Natural Language → Diagrams: "Create a workflow for order processing" → Complete BPMN diagram
  • 📊 AI-Powered Analysis: Intelligent optimization, bottleneck detection, and process improvement
  • 🔧 Universal AI Access: Any MCP-compatible AI agent can create and manipulate diagrams
  • 🎨 Interactive Canvas: Real-time diagram editing with drag-and-drop
  • Auto-Discovery: Automatically detects and configures available AI models

📊 Current Status

Functional MVP with Strong Foundation

Working Components:

  • Complete MCP server with 7 diagram tools implemented
  • TypeScript frontend with Canvas rendering
  • Ollama integration with model auto-detection
  • Basic diagram creation and manipulation
  • Comprehensive documentation and startup instructions

⚠️ Ready for Use:

  • Creates sample diagrams with basic node types
  • AI generates intelligent diagram planning (text-based)
  • Manual editing supports position updates and basic interactions
  • All three services integrate smoothly

🔧 Areas for Enhancement:

  • AI → Visual: Currently generates text plans, full visual generation being refined
  • Canvas Rendering: Basic shapes working, advanced BPMN/UML symbols in development
  • Edge Creation: Tool implemented, UI workflow being polished
  • File Persistence: Memory-based storage, file system integration planned
  • Testing: Core functionality validated, comprehensive test suite in progress

Architecture Validation: This implementation successfully demonstrates that the MCP-GLSP concept works. The foundation is solid and the system is actively usable for diagram creation and AI experimentation.

🏗️ Architecture

Revolutionary Protocol Mapping:

  • MCP Resources → Diagram model state (read-only views)
  • MCP Tools → Diagram operations (create, modify, validate)
  • MCP Prompts → AI modeling workflows (guided templates)

Components:

  • Backend: Rust HTTP server implementing MCP over JSON-RPC
  • Frontend: TypeScript web client with Canvas rendering + AI integration
  • AI Agent: Ollama LLM integration with intelligent diagram generation

🚀 Quick Start

Prerequisites

  1. Rust (latest stable)

    curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
    
  2. Node.js (v18+) and npm

    # Download from https://nodejs.org/ or use your package manager
    node --version  # Should be v18+
    npm --version
    
  3. Ollama (for AI features)

    # Install from https://ollama.ai/ then:
    ollama pull llama3.2  # or llama2, mistral, etc.
    

🔥 Start the Complete System

Terminal 1: Start MCP-GLSP Server

cd glsp-mcp-server
cargo run --bin server

Expected: "Server listening on http://127.0.0.1:3000"

Terminal 2: Start Frontend + AI Agent

cd glsp-web-client
npm install  # First time only
npm run dev

Expected: "Local: http://localhost:5173/"

Terminal 3: Ensure Ollama is Running

# Check if running:
curl http://127.0.0.1:11434/api/tags

# If not running:
ollama serve

🎯 Test the AI Workflow

  1. Open: http://localhost:5173
  2. Check Status: AI panel should show 🟢 for both Ollama and MCP connections
  3. Select Model: Dropdown automatically populated with your available models
  4. Enter Description:
    "Create a BPMN workflow for customer support ticket resolution with escalation paths"
    
  5. Click "Create Diagram": Watch AI → MCP → Canvas magic! ✨

🎨 Usage Examples

Natural Language Diagram Creation

"Create a workflow for e-commerce order fulfillment with payment validation, inventory check, and shipping"

→ Complete BPMN diagram with start/end events, tasks, gateways, and proper flow

AI-Powered Analysis

  • Analyze Current Diagram: Get intelligent insights about process efficiency
  • Optimize Layout: AI applies best practices for diagram organization
  • Add Error Handling: Automatically insert error boundaries and recovery paths

Manual Editing

  • Drag & Drop: Interactive canvas with real-time editing
  • Tool Palette: Create nodes, edges, apply layouts manually
  • Export: SVG, JSON, or other formats

🔧 Development

Backend Development

cd glsp-mcp-server

# Run server
cargo run --bin server

# Run tests
cargo test

# Build release
cargo build --release

Frontend Development

cd glsp-web-client

# Development server
npm run dev

# Build for production
npm run build

# Type checking
npx tsc

# Linting
npm run lint

API Testing

# Test MCP server health
curl http://127.0.0.1:3000/health

# Test diagram creation
curl -X POST http://127.0.0.1:3000/mcp/rpc \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "method": "tools/call",
    "params": {
      "name": "create_diagram",
      "arguments": {"diagramType": "workflow", "name": "Test"}
    },
    "id": 1
  }'

📚 Documentation

🌐 MCP Protocol Integration

This implementation provides:

Tools (7 available)

  • create_diagram, create_node, create_edge, delete_element
  • update_element, apply_layout, export_diagram

Resources (Dynamic)

  • diagram://model/{id} - Complete diagram state
  • diagram://validation/{id} - Validation results
  • diagram://metadata/{id} - Statistics and info
  • diagram://list - All available diagrams

Prompts (6 AI workflows)

  • generate_workflow, optimize_layout, add_error_handling
  • analyze_diagram, create_subprocess, convert_diagram

🚀 What Makes This Revolutionary

  1. First AI-Native GLSP: Traditional GLSP requires manual interaction - this enables pure AI-driven modeling
  2. Universal AI Compatibility: Any MCP-compatible AI can connect (Claude Desktop, custom agents, etc.)
  3. Intelligent Automation: AI understands diagram semantics, not just visual elements
  4. Self-Configuring: Auto-discovers models, handles errors gracefully
  5. Proven Architecture: Demonstrates successful MCP-GLSP integration with real working code

🤝 Contributing

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

📄 License

MIT License - see LICENSE file for details.

🙏 Acknowledgments

  • Eclipse GLSP: Original Graphical Language Server Protocol inspiration
  • Anthropic MCP: Model Context Protocol specification
  • Ollama: Local LLM runtime
  • Rust & TypeScript: Amazing development ecosystems

🎯 Ready to revolutionize diagram creation with AI? Start the system and create your first AI-generated diagram in under 2 minutes! 🚀

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选