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
Hi team. First of all hats off for building mcp-use-ts. Super useful, super early.
I have a question, Im testing some remote mcp servers for my new app, but, some of them require env variables like API keys. For example, TAVILY Search requires it, how do I pass the env variables in the configuration dict?
Hi team. First of all hats off for building mcp-use-ts. Super useful, super early.
I have a question, Im testing some remote mcp servers for my new app, but, some of them require env variables like API keys. For example, TAVILY Search requires it, how do I pass the env variables in the configuration dict?
i.e
try { const config = { mcpServers: { tavily: { command: 'npx', args: ["-y", "tavily-mcp"], env: '???????????????????????????????????????????'}, airbnb: { command: 'npx', args: ['@openbnb/mcp-server-airbnb'] }, playwright: { command: 'npx', args: ['@playwright/mcp@0.0.28'] } } }How do I pass my environment variable KEY? do I just paste it in, or is there another format to follow? Thanksss