|
1 |
| -# |
| 1 | +# Streamable HTTP Example |
2 | 2 |
|
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. |
0 commit comments