Get next request ID
(&self)
| 48 | |
| 49 | /// Get next request ID |
| 50 | fn next_id(&self) -> u64 { |
| 51 | self.request_id.fetch_add(1, Ordering::SeqCst) |
| 52 | } |
| 53 | |
| 54 | /// Initialize the MCP connection |
| 55 | pub async fn initialize(&self) -> Result<InitializeResult> { |
no outgoing calls
no test coverage detected