update changelog + readme

This commit is contained in:
Taylor Wilsdon 2025-05-11 13:50:48 -04:00
parent 2be873eee1
commit 70f4e64b28
2 changed files with 18 additions and 1 deletions

View File

@ -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

View File

@ -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
}
}
```