-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmcp-test.http
More file actions
85 lines (74 loc) · 1.48 KB
/
Copy pathmcp-test.http
File metadata and controls
85 lines (74 loc) · 1.48 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
@baseUrl = http://127.0.0.1:4000
@mcpUrl = {{baseUrl}}/mcp
@auth = Bearer [put here the token]
### health
GET {{baseUrl}}/api/health
### mcp initialize
POST {{mcpUrl}}
Authorization: {{auth}}
Content-Type: application/json
Accept: application/json, text/event-stream
{
"jsonrpc": "2.0",
"id": 1,
"method": "initialize",
"params": {
"protocolVersion": "2024-11-05",
"capabilities": {},
"clientInfo": {
"name": "mcp-test-http",
"version": "1.0.0"
}
}
}
### mcp notifications/initialized
POST {{mcpUrl}}
Authorization: {{auth}}
Content-Type: application/json
Accept: application/json, text/event-stream
{
"jsonrpc": "2.0",
"method": "notifications/initialized",
"params": {}
}
### mcp tools/list
POST {{mcpUrl}}
Authorization: {{auth}}
Content-Type: application/json
Accept: application/json, text/event-stream
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/list",
"params": {}
}
### mcp tools/call list_projects
POST {{mcpUrl}}
Authorization: {{auth}}
Content-Type: application/json
Accept: application/json, text/event-stream
{
"jsonrpc": "2.0",
"id": 3,
"method": "tools/call",
"params": {
"name": "list_projects",
"arguments": {}
}
}
### mcp tools/call search_files
POST {{mcpUrl}}
Authorization: {{auth}}
Content-Type: application/json
Accept: application/json, text/event-stream
{
"jsonrpc": "2.0",
"id": 4,
"method": "tools/call",
"params": {
"name": "search_files",
"arguments": {
"query": "README"
}
}
}