Configuration Parameters for Remote MCP Servers? #1595
tkaria
started this conversation in
Ideas - General
Replies: 1 comment
-
|
Check out the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
How are people configuring remote servers today? It's pretty straightforward with a local server - e.g:
When working with local MCP servers, configuration is straightforward - we can pass parameters via command-line arguments:
Local
{ "mcpServers": { "my-server": { "command": "node", "args": ["server.js", "--api-key=${API_KEY}", "--foo=bar"] } } }but it seems there's no standard for remote servers:
Remote
{ "mcpServers": { "remote-server": { "url": "https://example.com/mcp" // 🤔 How do we pass configuration here? } } }I can imagine multiple approaches to addressing this including:
e.g. `url: https://example.com/mcp?foo=bar"
e.g.
x-mcp-configuration: foo=bar;zip=flipe.g. Adding an optional step pre or post initialization to specify config params
What I'd like to understand:
Beta Was this translation helpful? Give feedback.
All reactions