mirror of
https://github.com/open-webui/mcpo
synced 2025-06-26 18:26:58 +00:00
update changelog + readme
This commit is contained in:
parent
2be873eee1
commit
70f4e64b28
@ -12,6 +12,12 @@ All notable changes to this project will be documented in this file.
|
||||
The format is based on Keep a Changelog,
|
||||
and this project adheres to Semantic Versioning.
|
||||
|
||||
## [0.0.14] - 2025-05-11
|
||||
|
||||
### Added
|
||||
|
||||
- 🌐 **Streamable HTTP Transport Support**: mcpo now supports MCP servers using the Streamable HTTP transport. This allows for more flexible and robust communication, including session management and resumable streams. Configure via CLI with `--server-type "streamablehttp" -- <URL>` or in the config file with `type: "streamablehttp"` and a `url`.
|
||||
|
||||
## [0.0.13] - 2025-05-01
|
||||
|
||||
### Added
|
||||
|
||||
13
README.md
13
README.md
@ -46,6 +46,12 @@ To use an SSE-compatible MCP server, simply specify the server type and endpoint
|
||||
mcpo --port 8000 --api-key "top-secret" --server-type "sse" -- http://127.0.0.1:8001/sse
|
||||
```
|
||||
|
||||
To use a Streamable HTTP-compatible MCP server, specify the server type and endpoint:
|
||||
|
||||
```bash
|
||||
mcpo --port 8000 --api-key "top-secret" --server-type "streamablehttp" -- http://127.0.0.1:8002/mcp
|
||||
```
|
||||
|
||||
You can also run mcpo via Docker with no installation:
|
||||
|
||||
```bash
|
||||
@ -86,8 +92,13 @@ Example config.json:
|
||||
"args": ["mcp-server-time", "--local-timezone=America/New_York"]
|
||||
},
|
||||
"mcp_sse": {
|
||||
"type": "sse", // Explicitly define type
|
||||
"url": "http://127.0.0.1:8001/sse"
|
||||
} // SSE MCP Server
|
||||
},
|
||||
"mcp_streamable_http": {
|
||||
"type": "streamablehttp",
|
||||
"url": "http://127.0.0.1:8002/mcp"
|
||||
} // Streamable HTTP MCP Server
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
Loading…
Reference in New Issue
Block a user