Skip to content

Commit ed079b9

Browse files
Add acknowledgements to README (#94)
* Add acknowledgements to README * Apply suggestions from PR review. Co-authored-by: Stephen Toub <[email protected]> --------- Co-authored-by: Stephen Toub <[email protected]>
1 parent 367f265 commit ed079b9

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

README.MD

+7-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
The official C# SDK for the [Model Context Protocol](https://modelcontextprotocol.io/), enabling .NET applications, services, and libraries to implement and interact with MCP clients and servers.
66

7-
> [!NOTE]
7+
> [!NOTE]
88
> This repo is still in preview, breaking changes can be introduced without prior notice.
99
1010
## About MCP
@@ -65,7 +65,7 @@ IList<AIFunction> tools = await client.GetAIFunctionsAsync();
6565
IChatClient chatClient = ...;
6666
var response = await chatClient.GetResponseAsync(
6767
"your prompt here",
68-
new()
68+
new()
6969
{
7070
Tools = [.. tools],
7171
});
@@ -110,7 +110,7 @@ using Microsoft.Extensions.Logging.Abstractions;
110110
McpServerOptions options = new()
111111
{
112112
ServerInfo = new() { Name = "MyServer", Version = "1.0.0" },
113-
Capabilities = new()
113+
Capabilities = new()
114114
{
115115
Tools = new()
116116
{
@@ -166,6 +166,10 @@ await server.StartAsync();
166166
await Task.Delay(Timeout.Infinite);
167167
```
168168

169+
## Acknowledgements
170+
171+
The starting point for this library was a project called [mcpdotnet](https://github.com/PederHP/mcpdotnet), initiated by [Peder Holdgaard Pederson](https://github.com/PederHP). We are grateful for the work done by Peder and other contributors to that repository, which created a solid foundation for this library.
172+
169173
## License
170174

171175
This project is licensed under the [MIT License](LICENSE).

0 commit comments

Comments
 (0)