Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions design/design.md
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ server.AddReceivingMiddleware(withLogging)

#### Rate Limiting

Rate limiting can be configured using middleware. Please see [examples/rate-limiting](<https://github.com/modelcontextprotocol/go-sdk/tree/main/examples/rate-limiting>] for an example on how to implement this.
Rate limiting can be configured using middleware. Please see [examples/rate-limiting](<https://github.com/modelcontextprotocol/go-sdk/tree/main/examples/rate-limiting>) for an example on how to implement this.

### Errors

Expand Down Expand Up @@ -609,7 +609,7 @@ A tool handler accepts `CallToolParams` and returns a `CallToolResult`. However,
```go
type CallToolParamsFor[In any] struct {
Meta Meta `json:"_meta,omitempty"`
Arguments In `json:"arguments,omitempty"`
Arguments In `json:"arguments,omitempty"`
Name string `json:"name"`
}

Expand Down
Loading