Skip to content

Commit 342b59a

Browse files
authored
Update MCP servers to use SSE endpoints (danny-avila#1388)
### TL;DR Updated the vault-set-search MCP server to use SSE instead of stdio, and fixed the data_portal URL. ### What changed? - Changed the vault-set-search MCP server configuration from stdio type to SSE type - Replaced the npx command with a direct URL to the SSE endpoint: `https://proxy.shopify.ai/mcp/vault_set/sse` - Added Authorization header with OpenAI API key for the vault-set-search server - Updated the data_portal URL from `https://proxy.shopify.ai/mcp/data_portal` to `https://proxy.shopify.ai/mcp/data_portal/sse` ### Why make this change? Switching vault-set-search from stdio to SSE provides a more efficient and standardized communication method. This change aligns with our architecture patterns and ensures consistent implementation across MCP servers. The data_portal URL update ensures proper endpoint addressing.
2 parents 026786d + 21c2ba4 commit 342b59a

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

librechat.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -121,10 +121,11 @@ interface:
121121

122122
mcpServers:
123123
vault-set-search:
124-
type: 'stdio'
125-
command: 'npx'
126-
args: ['--registry=https://npm.shopify.io/node/', '-y', 'vault-set-mcp-ts']
124+
type: 'sse'
125+
url: https://proxy.shopify.ai/mcp/vault_set/sse
127126
iconPath: '/assets/vaultbot-logo.svg'
127+
headers:
128+
Authorization: 'Bearer ${OPENAI_API_KEY}'
128129

129130
scout:
130131
type: 'stdio'
@@ -157,7 +158,7 @@ mcpServers:
157158

158159
data_portal:
159160
type: 'sse'
160-
url: https://proxy.shopify.ai/mcp/data_portal
161+
url: https://proxy.shopify.ai/mcp/data_portal/sse
161162
iconPath: '/assets/data_portal.png'
162163
headers:
163164
Authorization: 'Bearer ${OPENAI_API_KEY}'

0 commit comments

Comments
 (0)