You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+25-1Lines changed: 25 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -98,6 +98,16 @@ The MCP Inspector provides convenient buttons to export server launch configurat
98
98
}
99
99
```
100
100
101
+
**Streamable HTTP transport example:**
102
+
103
+
```json
104
+
{
105
+
"type": "streamable-http",
106
+
"url": "http://localhost:3000/mcp",
107
+
"note": "For Streamable HTTP connections, add this URL directly in your MCP Client"
108
+
}
109
+
```
110
+
101
111
-**Servers File** - Copies a complete MCP configuration file structure to your clipboard, with your current server configuration added as `default-server`. This can be saved directly as `mcp.json`.
102
112
103
113
**STDIO transport example:**
@@ -131,9 +141,23 @@ The MCP Inspector provides convenient buttons to export server launch configurat
131
141
}
132
142
```
133
143
144
+
**Streamable HTTP transport example:**
145
+
146
+
```json
147
+
{
148
+
"mcpServers": {
149
+
"default-server": {
150
+
"type": "streamable-http",
151
+
"url": "http://localhost:3000/mcp",
152
+
"note": "For Streamable HTTP connections, add this URL directly in your MCP Client"
153
+
}
154
+
}
155
+
}
156
+
```
157
+
134
158
These buttons appear in the Inspector UI after you've configured your server settings, making it easy to save and reuse your configurations.
135
159
136
-
For SSE transport connections, the Inspector provides similar functionality for both buttons. The "Server Entry" button copies the SSE URL configuration that can be added to your existing configuration file, while the "Servers File" button creates a complete configuration file containing the SSE URL for direct use in clients.
160
+
For SSE and Streamable HTTP transport connections, the Inspector provides similar functionality for both buttons. The "Server Entry" button copies the configuration that can be added to your existing configuration file, while the "Servers File" button creates a complete configuration file containing the URL for direct use in clients.
137
161
138
162
You can paste the Server Entry into your existing `mcp.json` file under your chosen server name, or use the complete Servers File payload to create a new configuration file.
0 commit comments