Skip to content
Merged
Show file tree
Hide file tree
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
28 changes: 20 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
name: Test
on:
# Manual trigger
workflow_dispatch:
workflow_dispatch:
push:
branches: main
pull_request:

permissions:
contents: read

jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v5
- name: Check out code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
- name: Check formatting
run: |
unformatted=$(gofmt -l .)
Expand All @@ -26,18 +26,30 @@ jobs:
exit 1
fi
echo "All Go files are properly formatted"

test:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.23', '1.24' ]
go: [ '1.23', '1.24', '1.25.0-rc.2' ]
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Check out code
uses: actions/checkout@v4
- name: Test
run: go test -v ./...

race-test:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.24'
- name: Test with -race
run: go test -v -race ./...
8 changes: 2 additions & 6 deletions mcp/streamable.go
Original file line number Diff line number Diff line change
Expand Up @@ -267,9 +267,7 @@ type stream struct {

// streamRequests is the set of unanswered incoming RPCs for the stream.
//
// Lifecycle: requests values persist until the requests have been
// replied to by the server. Notably, NOT until they are sent to an HTTP
// response, as delivery is not guaranteed.
// Requests persist until their response data has been added to outgoing.
requests map[jsonrpc.ID]struct{}
}

Expand Down Expand Up @@ -482,6 +480,7 @@ stream:
t.mu.Lock()
outgoing := stream.outgoing
stream.outgoing = nil
nOutstanding := len(stream.requests)
t.mu.Unlock()

for _, data := range outgoing {
Expand All @@ -493,9 +492,6 @@ stream:
}
}

t.mu.Lock()
nOutstanding := len(stream.requests)
t.mu.Unlock()
// If all requests have been handled and replied to, we should terminate this connection.
// "After the JSON-RPC response has been sent, the server SHOULD close the SSE stream."
// §6.4, https://modelcontextprotocol.io/specification/2025-06-18/basic/transports#sending-messages-to-the-server
Expand Down