mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-23 14:14:46 +08:00
docs: update documents
This commit is contained in:
@@ -18,11 +18,11 @@
|
|||||||
|
|
||||||
## APIs
|
## APIs
|
||||||
|
|
||||||
### Get Information of MCP Server
|
### Get metadata of MCP Server
|
||||||
|
|
||||||
**POST /api/mcp/server/metadata**
|
**POST /api/mcp/server/metadata**
|
||||||
|
|
||||||
For stdio type:
|
For `stdio` type:
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"transport": "stdio",
|
"transport": "stdio",
|
||||||
@@ -32,7 +32,7 @@ For stdio type:
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
For SSE type:
|
For `sse` type:
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"transport": "sse",
|
"transport": "sse",
|
||||||
|
|||||||
@@ -1,68 +0,0 @@
|
|||||||
# SSE Integration Test
|
|
||||||
|
|
||||||
## Auto Accepted Case
|
|
||||||
```
|
|
||||||
curl --location 'http://localhost:8000/api/chat/stream' \
|
|
||||||
--header 'Accept: */*' \
|
|
||||||
--header 'Accept-Language: en-US,en;q=0.9,zh-CN;q=0.8,zh;q=0.7' \
|
|
||||||
--header 'Cache-Control: no-cache' \
|
|
||||||
--header 'Connection: keep-alive' \
|
|
||||||
--header 'Content-Type: application/json' \
|
|
||||||
--data '{
|
|
||||||
"messages": [
|
|
||||||
{
|
|
||||||
"role": "user",
|
|
||||||
"content": "what is mcp?"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"thread_id": "test_thread_1",
|
|
||||||
"auto_accepted_plan": true
|
|
||||||
}'
|
|
||||||
```
|
|
||||||
|
|
||||||
## Human in the Loop Case
|
|
||||||
|
|
||||||
### Initial Plan
|
|
||||||
```
|
|
||||||
curl --location 'http://localhost:8000/api/chat/stream' \
|
|
||||||
--header 'Accept: */*' \
|
|
||||||
--header 'Accept-Language: en-US,en;q=0.9,zh-CN;q=0.8,zh;q=0.7' \
|
|
||||||
--header 'Cache-Control: no-cache' \
|
|
||||||
--header 'Connection: keep-alive' \
|
|
||||||
--header 'Content-Type: application/json' \
|
|
||||||
--data '{
|
|
||||||
"messages": [
|
|
||||||
{
|
|
||||||
"role": "user",
|
|
||||||
"content": "what is mcp?"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"thread_id": "test_thread_2",
|
|
||||||
"auto_accepted_plan": false
|
|
||||||
}'
|
|
||||||
```
|
|
||||||
|
|
||||||
|
|
||||||
### Edit the plan
|
|
||||||
```
|
|
||||||
{
|
|
||||||
"messages": [
|
|
||||||
{
|
|
||||||
"role": "user",
|
|
||||||
"content": "make the last step be comprehensive"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"thread_id": "test_thread_2",
|
|
||||||
"auto_accepted_plan": false,
|
|
||||||
"interrupt_feedback": "edit_plan"
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### Accept the plan
|
|
||||||
```
|
|
||||||
{
|
|
||||||
"thread_id": "test_thread_2",
|
|
||||||
"auto_accepted_plan": false,
|
|
||||||
"interrupt_feedback": "accepted"
|
|
||||||
}
|
|
||||||
```
|
|
||||||
Reference in New Issue
Block a user