Jeecgboot

v1.0.0Business Applicationsstable

AI 低代码平台,「低代码 + 零代码」双模式驱动:低代码一键生成前后端代码,零代码 5 分钟搭建系统,AI Skills 一句话画流程、设计表单、生成整套系统。内置 AI聊天、知识库、流程编排、MCP插件等,兼容主流大模型。引领「AI 生成 → 在线配置 → 代码生成 → 手工合并->AI修改」开发模式,消除 Java 项目 80% 的重复工作,提效而不失灵活。

activitiagentaiantdclaude-code
Share:
46,352
Stars
0
Downloads
0
Weekly
0/5

What is Jeecgboot?

Jeecgboot is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to ai 低代码平台,「低代码 + 零代码」双模式驱动:低代码一键生成前后端代码,零代码 5 分钟搭建系统,ai skills 一句话画流程、设计表单、生成整套系统。内置 ai聊天、知识库、流程编排、mcp插件等,兼容主流大模型。引领「ai 生成 → 在线配置 → 代码生成 → 手工合并->ai修改」开发模式,消除 java 项目 80% 的重复工作,提效而不失灵活。

AI 低代码平台,「低代码 + 零代码」双模式驱动:低代码一键生成前后端代码,零代码 5 分钟搭建系统,AI Skills 一句话画流程、设计表单、生成整套系统。内置 AI聊天、知识库、流程编排、MCP插件等,兼容主流大模型。引领「AI 生成 → 在线配置 → 代码生成 → 手工合并->AI修改」开发模式,消除 Java 项目 80% 的重复工作,提效而不失灵活。

This server falls under the Business Applications category on MCPgee, the world's largest MCP server directory with 33,000+ servers.

Features

  • AI 低代码平台,「低代码 + 零代码」双模式驱动:低代码一键生成前后端代码,零代码 5 分钟搭建系统,AI Skill

Use Cases

Low-code development platform
Code generation
Workflow orchestration
jeecgboot

Maintainer

LicenseApache-2.0
Languagejava
Versionv1.0.0
UpdatedMay 22, 2026
Statushealthy
Maintenanceactive

Works with

ClaudeOpenAIwindowsmacoslinux

Installation

Manual Installation

npx jeecgboot

Configuration

Configuration Details

Config File

claude_desktop_config.json

Performance

Response Metrics

Response Time< 200ms
ThroughputMedium

Resource Usage

Memory UsageLow
CPU UsageLow

How to Set Up and Use Jeecgboot

JeecgBoot is an enterprise-grade AI low-code platform for Java developers that dramatically reduces repetitive work by combining one-click code generation with zero-code visual form and workflow builders. It integrates AI capabilities including a knowledge base Q&A system (RAG), AI model management for ChatGPT, DeepSeek, and Ollama, and a drag-and-drop AI workflow orchestrator. The MCP plugin support enables AI assistants to interact with JeecgBoot's code generation engine, form designer, and workflow system to build complete Spring Boot + Vue 3 applications through natural language commands.

Prerequisites

  • JDK 17+ (JDK 8 and 21 are also supported) installed on your system
  • Node.js 20+ and pnpm 9+ for the Vue 3 frontend
  • MySQL 5.7+ or PostgreSQL as the database backend
  • Maven 3.6+ for building the Spring Boot backend
  • An MCP client such as Claude Desktop or Claude Code
1

Clone the JeecgBoot repository

Clone the main repository which contains both the Spring Boot backend (jeecg-boot) and Vue 3 frontend (jeecgboot-vue3).

git clone https://github.com/jeecgboot/JeecgBoot.git
cd JeecgBoot
2

Set up the database

Create a MySQL or PostgreSQL database and import the initialization SQL scripts found in the db directory. Update the database connection settings in the backend configuration.

# Create database
mysql -u root -p -e "CREATE DATABASE jeecgboot CHARACTER SET utf8mb4;"
# Import schema
mysql -u root -p jeecgboot < jeecg-boot/db/jeecgboot-mysql-5.7.sql
3

Configure the backend application

Edit the Spring Boot application configuration to set your database credentials, Redis connection (if used), and AI provider settings for ChatGPT, DeepSeek, or Ollama integration.

# Edit jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-dev.yml
# Set: spring.datasource.url, username, password
# Default admin credentials: admin / 123456
4

Start the Spring Boot backend

Build and run the backend server. The API will start on port 8080 by default.

cd jeecg-boot
mvn clean install -DskipTests
mvn spring-boot:run -pl jeecg-module-system/jeecg-system-start
5

Start the Vue 3 frontend

Install frontend dependencies and start the development server. The frontend will be available at http://localhost:3100.

cd jeecgboot-vue3
pnpm install
pnpm dev
6

Configure the MCP plugin in your AI client

JeecgBoot exposes an MCP plugin endpoint for AI assistant integration. Add it to your Claude Desktop configuration pointing to your running JeecgBoot instance.

Jeecgboot Examples

Client configuration

Add the JeecgBoot MCP server to claude_desktop_config.json. It connects to your running JeecgBoot instance via its API endpoint.

{
  "mcpServers": {
    "jeecgboot": {
      "command": "npx",
      "args": ["jeecgboot"],
      "env": {
        "JEECGBOOT_URL": "http://localhost:8080/jeecg-boot",
        "JEECGBOOT_TOKEN": "your-api-token-here"
      }
    }
  }
}

Prompts to try

Use these prompts to interact with JeecgBoot's low-code platform through your AI assistant.

- "Generate the frontend and backend code for a Customer entity with fields: name, email, phone, and status"
- "Create a Flowable workflow for a leave approval process with manager and HR review steps"
- "Build a zero-code form for employee onboarding with 5 required fields and a file upload"
- "Query the knowledge base for documentation on JeecgBoot's permission configuration"
- "Generate a sales dashboard with monthly revenue chart and top 10 customers table"

Troubleshooting Jeecgboot

Backend fails to start with database connection errors

Verify the JDBC URL, username, and password in application-dev.yml. Ensure MySQL is running and the jeecgboot database exists with the correct character set (utf8mb4). Check that MySQL 5.7+ is used as older versions may lack required JSON functions.

Frontend shows blank page or API connection errors

Confirm the backend is running on port 8080 and the VITE_GLOB_API_URL in jeecgboot-vue3/.env.development matches your backend URL. Check browser console for CORS errors — the backend must have your frontend origin in its CORS allowed list.

AI code generation produces errors or incomplete files

Ensure your AI model configuration (ChatGPT/DeepSeek API key or Ollama endpoint) is correctly set in the backend config. For Ollama, verify the model is pulled and the endpoint is accessible at http://localhost:11434.

Frequently Asked Questions about Jeecgboot

What is Jeecgboot?

Jeecgboot is a Model Context Protocol (MCP) server that ai 低代码平台,「低代码 + 零代码」双模式驱动:低代码一键生成前后端代码,零代码 5 分钟搭建系统,ai skills 一句话画流程、设计表单、生成整套系统。内置 ai聊天、知识库、流程编排、mcp插件等,兼容主流大模型。引领「ai 生成 → 在线配置 → 代码生成 → 手工合并->ai修改」开发模式,消除 java 项目 80% 的重复工作,提效而不失灵活。 It connects AI assistants to external tools and data sources through a standardized interface.

How do I install Jeecgboot?

Follow the installation instructions on the Jeecgboot GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.

Which AI clients work with Jeecgboot?

Jeecgboot works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.

Is Jeecgboot free to use?

Yes, Jeecgboot is open source and available under the Apache-2.0 license. You can use it freely in both personal and commercial projects.

Jeecgboot Alternatives — Similar Business Applications Servers

Looking for alternatives to Jeecgboot? Here are other popular business applications servers you can use with Claude, Cursor, and VS Code.

n8n

189.1k

A comprehensive MCP server that provides full control over n8n automation workflows through natural language. It offers 43 tools for managing workflows, executions, credentials, and data tables, with safety features like write-mode protection and dou

LobeHub

77.5k

🤯 LobeHub is your Chief Agent Operator, organizing your agents into 7×24 operations by hiring, scheduling, and reporting on your entire AI team.

CowAgent

44.7k

CowAgent (chatgpt-on-wechat) 是基于大模型的超级AI助理,能主动思考和任务规划、访问操作系统和外部资源、创造和执行Skills、通过长期记忆和知识库不断成长,比OpenClaw更轻量和便捷。同时支持微信、飞书、钉钉、企微、QQ、公众号、网页等接入,可选择DeepSeek/OpenAI/Claude/Gemini/ MiniMax/Qwen/GLM/LinkAI,能处理文本、语音、图片和文件,可快速搭建个人AI助理和企业数字员工。

Minds Platform

39.2k

Platform dedicated to building an open foundation for applied Artificial Intelligence, designed for people seeking production-ready AI systems they can truly control, extend and deploy anywhere.

Astrbot

32.8k

AI Agent Assistant & development framework that integrates lots of IM platforms, LLMs, plugins and AI feature, and can be your openclaw alternative. ✨

FastGPT

28.1k

FastGPT is a knowledge-based platform built on the LLMs, offers a comprehensive suite of out-of-the-box capabilities such as data processing, RAG retrieval, and visual AI workflow orchestration, letting you easily develop and deploy complex question-

Browse More Business Applications MCP Servers

Explore all business applications servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.

Quick Config Preview

{ "mcpServers": { "jeecgboot": { "command": "npx", "args": ["-y", "jeecgboot"] } } }

Add this to your claude_desktop_config.json or .cursor/mcp.json

Read the full setup guide →

Ready to use Jeecgboot?

Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.

33,000+ ServersFree & Open SourceStep-by-Step Guides