@@ -105,9 +105,9 @@ Example configuration:
105105``` json
106106{
107107 "servers" : {
108- "github" : { "url" : " http://localhost:19046/sse#github " , "type" : " sse " },
108+ "github" : { "url" : " http://localhost:19046/mcp " , "type" : " http " },
109109 "fetch" : { "url" : " http://localhost:43832/mcp" , "type" : " http" },
110- "osv " : { "url" : " http://localhost:51712/mcp " , "type" : " http " }
110+ "sqlite " : { "url" : " http://localhost:51712/sse#sqlite " , "type" : " sse " }
111111 }
112112}
113113```
@@ -129,9 +129,9 @@ Example configuration:
129129``` json
130130{
131131 "mcpServers" : {
132- "github" : { "url" : " http://localhost:19046/sse#github " },
132+ "github" : { "url" : " http://localhost:19046/mcp " },
133133 "fetch" : { "url" : " http://localhost:43832/mcp" },
134- "osv " : { "url" : " http://localhost:51712/mcp " }
134+ "sqlite " : { "url" : " http://localhost:51712/sse#sqlite " }
135135 }
136136}
137137```
@@ -157,9 +157,9 @@ Example configuration:
157157 // Other Claude Code settings...
158158
159159 "mcpServers" : {
160- "github" : { "url" : " http://localhost:19046/sse#github " , "type" : " sse " },
160+ "github" : { "url" : " http://localhost:19046/mcp " , "type" : " http " },
161161 "fetch" : { "url" : " http://localhost:43832/mcp" , "type" : " http" },
162- "osv " : { "url" : " http://localhost:51712/mcp " , "type" : " http " }
162+ "sqlite " : { "url" : " http://localhost:51712/sse#sqlite " , "type" : " sse " }
163163 }
164164}
165165```
@@ -199,9 +199,12 @@ Example configuration:
199199``` json
200200{
201201 "mcpServers" : {
202- "github" : { "url" : " http://localhost:19046/sse#github" , "type" : " sse" },
202+ "github" : {
203+ "url" : " http://localhost:19046/mcp" ,
204+ "type" : " streamable-http"
205+ },
203206 "fetch" : { "url" : " http://localhost:43832/mcp" , "type" : " streamable-http" },
204- "osv " : { "url" : " http://localhost:51712/mcp " , "type" : " streamable-http " }
207+ "sqlite " : { "url" : " http://localhost:51712/sse#sqlite " , "type" : " sse " }
205208 // Note: Cline uses "streamableHttp" instead of "streamable-http"
206209 }
207210}
@@ -226,11 +229,14 @@ Example configuration:
226229``` yaml
227230mcpServers :
228231 - name : github
229- type : sse
230- url : http://localhost:19046/sse#github
232+ type : streamable-http
233+ url : http://localhost:19046/mcp
231234 - name : fetch
232235 type : streamable-http
233236 url : http://localhost:43832/mcp
237+ - name : sqlite
238+ type : sse
239+ url : http://localhost:51712/sse#sqlite
234240` ` `
235241
236242Continue supports SSE (` type: sse`) and Streamable HTTP
@@ -254,11 +260,11 @@ For [PydanticAI](https://ai.pydantic.dev/), set the MCP server URL in your code:
254260from pydantic_ai.mcp import MCPServerSSE
255261from pydantic_ai.mcp import MCPServerStreamableHTTP
256262
257- # For Server-Sent Events (SSE)
258- server = MCPServerSSE(url='http://localhost:43832/sse#github')
259-
260263# For Streamable HTTP
261- server = MCPServerStreamableHTTP(url='http://localhost:51712/mcp')
264+ server = MCPServerStreamableHTTP(url='http://localhost:43832/mcp')
265+
266+ # For Server-Sent Events (SSE)
267+ server = MCPServerSSE(url='http://localhost:51712/sse#sqlite')
262268` ` `
263269
264270# ## Example: Copilot for JetBrains IDEs
@@ -271,8 +277,8 @@ to include the MCP server URL:
271277` ` ` json
272278{
273279 "servers": {
274- "github": { "url": "http://localhost:43832/sse#github ", "type": "sse " },
275- "fetch ": { "url": "http://localhost:51712/mcp ", "type": "http " }
280+ "github": { "url": "http://localhost:43832/mcp ", "type": "http " },
281+ "sqlite ": { "url": "http://localhost:51712/sse#sqlite ", "type": "sse " }
276282 }
277283}
278284` ` `
0 commit comments