-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmcp-session.http
More file actions
109 lines (94 loc) · 2.73 KB
/
mcp-session.http
File metadata and controls
109 lines (94 loc) · 2.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
@SchemaStoreMcpServer_HostAddress = http://localhost:5189
### Health Check
GET {{SchemaStoreMcpServer_HostAddress}}/health
### -------------------------------------------------------
### MCP Streamable HTTP Transport
### The server requires Accept: application/json, text/event-stream
### Responses use SSE format (event: message / data: {...})
### -------------------------------------------------------
### Step 1: Initialize — copy Mcp-Session-Id from the RESPONSE HEADERS
# @name initialize
POST {{SchemaStoreMcpServer_HostAddress}}/
Content-Type: application/json
Accept: application/json, text/event-stream
{
"jsonrpc": "2.0",
"id": 1,
"method": "initialize",
"params": {
"protocolVersion": "2025-11-25",
"clientInfo": { "name": "http-test", "version": "1.0" },
"capabilities": {}
}
}
### Step 2: Session ID from response header (VS 2022 17.13+ supports this)
@sessionId = {{initialize.response.headers.Mcp-Session-Id}}
### Send initialized notification
POST {{SchemaStoreMcpServer_HostAddress}}/
Content-Type: application/json
Accept: application/json, text/event-stream
Mcp-Session-Id: {{sessionId}}
{
"jsonrpc": "2.0",
"method": "notifications/initialized",
"params": {}
}
### List available tools
POST {{SchemaStoreMcpServer_HostAddress}}/
Content-Type: application/json
Accept: application/json, text/event-stream
Mcp-Session-Id: {{sessionId}}
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/list",
"params": {}
}
### -------------------------------------------------------
### searchSchemas
### -------------------------------------------------------
POST {{SchemaStoreMcpServer_HostAddress}}/
Content-Type: application/json
Accept: application/json, text/event-stream
Mcp-Session-Id: {{sessionId}}
{
"jsonrpc": "2.0",
"id": 10,
"method": "tools/call",
"params": {
"name": "searchSchemas",
"arguments": { "query": "docker" }
}
}
### -------------------------------------------------------
### getSchema
### -------------------------------------------------------
POST {{SchemaStoreMcpServer_HostAddress}}/
Content-Type: application/json
Accept: application/json, text/event-stream
Mcp-Session-Id: {{sessionId}}
{
"jsonrpc": "2.0",
"id": 20,
"method": "tools/call",
"params": {
"name": "getSchema",
"arguments": { "nameOrPartial": "tsconfig" }
}
}
### -------------------------------------------------------
### listSchemas (paginated)
### -------------------------------------------------------
POST {{SchemaStoreMcpServer_HostAddress}}/
Content-Type: application/json
Accept: application/json, text/event-stream
Mcp-Session-Id: {{sessionId}}
{
"jsonrpc": "2.0",
"id": 30,
"method": "tools/call",
"params": {
"name": "listSchemas",
"arguments": { "limit": 5, "offset": 0 }
}
}