Back to MCP directory
publicPublicdnsLocal runtime

solon-ai

Solon-AI 是一个面向全场景的 Java AI 应用开发框架,支持多种 AI 能力,可嵌入到多种框架中使用。

article

README

🚀 Solon 项目相关代码仓库及组件介绍

Solon 项目涵盖了多个代码仓库和组件,为开发者提供了丰富的功能和工具。下面将详细介绍 Solon 项目的主代码仓库、各个组件、插件以及相关示例代码。

📦 Solon 项目主代码仓库及相关信息

| 属性 | 详情 | |------|------| | Solon 主代码仓库 | https://gitee.com/opensolon/solon,包含核心功能实现。 | | 官网配套示例代码仓库 | https://gitee.com/opensolon/solon-examples,提供使用案例参考。 |

✨ Solon 项目组件介绍

Solon AI 组件

Solon Flow 组件

Solon Cloud 组件

Solon Admin 组件

Solon Jakarta 组件

Solon Integration 组件

🛠️ Solon 插件及工具

| 属性 | 详情 | |------|------| | Solon Gradle 插件 | Solon Gradle Plugin,提供构建支持。 | | Solon IntelliJ IDEA 插件 | Solon Idea Plugin,增强开发体验。 | | Solon VS Code 插件 | Solon VsCode Plugin,支持代码编辑和调试。 |

🌐 第三方扩展插件

| 属性 | 详情 | |------|------| | Solon 第三方功能扩展插件 | Solon Plugins,提供 Solon 项目的第三方功能扩展。 |

💻 使用示例

MCP 服务器

// 示例代码:MCP 服务器端实现
public class McpServer {
    public static void main(String[] args) {
        // 初始化 MCP 服务
        System.out.println("MCP Server Started");
    }
}

MCP 客户端

// 示例代码:MCP 客户端实现
public class McpClient {
    public static void main(String[] args) {
        // 连接 MCP 服务器
        System.out.println("Connecting to MCP Server");
    }
}

📚 总结

以上内容详细介绍了 Solon 项目的各个组件和功能模块,以及相关的代码仓库地址。如需进一步了解具体功能或使用方法,请访问对应代码仓库查看详细文档。

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client