Skip to content

Commit 94d69e7

Browse files
committed
fixed: session data is not tracked correctly
1 parent 8cdcbdb commit 94d69e7

File tree

2 files changed

+85
-5
lines changed

2 files changed

+85
-5
lines changed

examples/streamable_http/README.md

+73-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,74 @@
1-
#
1+
# Streamable HTTP Example
22

3-
mcp-autotest run -u http://localhost:8080/mcp testdata -- go run main.go
3+
This is a simple example of how to use the streamable HTTP transport with the MCP server.
4+
5+
You will need port 8080 to be free for this example to work.
6+
7+
To start server, run this command:
8+
9+
```bash
10+
go run main.go
11+
```
12+
13+
Then try sending POST to see how server responds:
14+
15+
```bash
16+
curl -X POST \
17+
-H "Content-Type: application/json" \
18+
-d '{"method":"tools/call", "params": {"name": "my-great-tool", "arguments": {}},"id":0}' \
19+
http://localhost:8080/mcp
20+
```
21+
22+
You can also autotest this example like this:
23+
24+
```bash
25+
go test
26+
```
27+
28+
, or with mcp-autotest:
29+
30+
```bash
31+
mcp-autotest run -u http://localhost:8080/mcp testdata -- go run main.go
32+
```
33+
34+
35+
## Using session
36+
37+
Try making such request to call the tool:
38+
39+
```bash
40+
curl -X POST -i \
41+
-H "Content-Type: application/json" \
42+
-d '{"method":"tools/call", "params": {"name": "my-great-tool", "arguments": {}},"id":0}' \
43+
http://localhost:8080/mcp
44+
```
45+
46+
You should see output like this:
47+
48+
```
49+
Content-Type: application/json
50+
Mcp-Session-Id: 25b4dda4-90dc-4616-a298-24a8a23e90ad
51+
Date: Mon, 31 Mar 2025 22:28:51 GMT
52+
Content-Length: 106
53+
54+
{"jsonrpc":"2.0","result":{"content":[{"text":"Sup, saving greatness to session","type":"text"}]},"id":0}
55+
```
56+
57+
Grab session id from the response header and use it in the next request:
58+
59+
```bash
60+
curl -X POST -i \
61+
-H "Content-Type: application/json" \
62+
-H "Mcp-Session-Id: 25b4dda4-90dc-4616-a298-24a8a23e90ad" \
63+
-d '{"method":"tools/call", "params": {"name": "my-great-tool", "arguments": {}},"id":1}' \
64+
http://localhost:8080/mcp
65+
```
66+
67+
This should print out different body:
68+
69+
```json
70+
{"jsonrpc":"2.0","result":{"content":[{"text":"Sup, already great","type":"text"}]},"id":1}
71+
```
72+
73+
The result is different for this session, but if you send another request without session id, it would give you the same result as before.
74+
This is because of how tool keeps session state using SessionManager.

pkg/session/session_manager.go

+12-3
Original file line numberDiff line numberDiff line change
@@ -52,22 +52,31 @@ func (sm *SessionManager) FindSessionById(sessionId uuid.UUID) (*Session, bool)
5252
return session, ok
5353
}
5454

55-
func (sm *SessionManager) ResolveSessionOrCreateNew(ctx context.Context, sessionId uuid.UUID) (context.Context, *Session, error) {
55+
func (sm *SessionManager) ResolveSessionOrCreateNew(
56+
ctx context.Context,
57+
sessionId uuid.UUID,
58+
) (context.Context, *Session, error) {
5659
session, ok := sm.FindSessionById(sessionId)
5760
if ok {
5861
ctx = WithSession(ctx, session)
5962
return ctx, session, nil
6063
}
6164

62-
return sm.CreateNewSession(ctx)
65+
return sm.CreateNewSession(ctx, &sessionId)
6366
}
6467

6568
func (sm *SessionManager) DeleteSession(sessionId uuid.UUID) {
6669
delete(sm.sessions, sessionId)
6770
}
6871

69-
func (sm *SessionManager) CreateNewSession(ctx context.Context) (context.Context, *Session, error) {
72+
func (sm *SessionManager) CreateNewSession(
73+
ctx context.Context,
74+
sessionId *uuid.UUID,
75+
) (context.Context, *Session, error) {
7076
session := NewSession()
77+
if sessionId != nil {
78+
session.SessionID = *sessionId
79+
}
7180
ctx = WithSession(ctx, session)
7281
sm.saveSession(session)
7382
return ctx, session, nil

0 commit comments

Comments
 (0)