update readme

This commit is contained in:
锦恢 2025-04-10 14:00:24 +08:00
parent 515a19f322
commit 39232cd748

View File

@ -1,6 +1,6 @@
<div align="center"> <div align="center">
<img src="./app/public/images/openmcp.svg" height="200px"/> <img src="./renderer/public/images/openmcp.svg" height="200px"/>
<h3>OpenMCP: 一体化 MCP Server 调试器</h3> <h3>OpenMCP: 一体化 MCP Server 调试器</h3>
@ -57,3 +57,19 @@ npm run serve
cd test cd test
npm run serve npm run serve
``` ```
---
## Flowchart
```mermaid
flowchart TB
A[用户输入问题] --> B[选择工具]
B --> C[大模型处理]
C --> D{是否有tool use?}
D -- 否 --> E[返回 content]
D -- 是 --> F[执行工具]
F --> G[返回工具执行结果]
G --> C
```