You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -75,7 +69,6 @@ You can easily build a service by using [`ServerHandler`](crates/rmcp/src/handle
75
69
```rust, ignore
76
70
let service = common::counter::Counter::new();
77
71
```
78
-
79
72
</details>
80
73
81
74
<details>
@@ -85,7 +78,6 @@ let service = common::counter::Counter::new();
85
78
// this call will finish the initialization process
86
79
let server = service.serve(transport).await?;
87
80
```
88
-
89
81
</details>
90
82
91
83
<details>
@@ -100,7 +92,6 @@ let roots = server.list_roots().await?;
100
92
// or send notification
101
93
server.notify_cancelled(...).await?;
102
94
```
103
-
104
95
</details>
105
96
106
97
<details>
@@ -111,9 +102,9 @@ let quit_reason = server.waiting().await?;
111
102
// or cancel it
112
103
let quit_reason = server.cancel().await?;
113
104
```
114
-
115
105
</details>
116
106
107
+
117
108
## Examples
118
109
119
110
See [examples](examples/README.md)
@@ -143,6 +134,7 @@ See [oauth_support](docs/OAUTH_SUPPORT.md) for details.
143
134
-[terminator](https://github.com/mediar-ai/terminator) - AI-powered desktop automation MCP server with cross-platform support and >95% success rate
144
135
-[stakpak-agent](https://github.com/stakpak/agent) - Security-hardened terminal agent for DevOps with MCP over mTLS, streaming, secret tokenization, and async task management
0 commit comments