30 lines
651 B
Markdown
30 lines
651 B
Markdown
local
|
|
{
|
|
/// Configure an MCP server that runs locally via stdin/stdout
|
|
///
|
|
/// The name of your MCP server
|
|
"some-mcp-server": {
|
|
/// The command which runs the MCP server
|
|
"command": ,
|
|
/// The arguments to pass to the MCP server
|
|
"args": [],
|
|
/// The environment variables to set
|
|
"env": {}
|
|
}
|
|
}
|
|
|
|
remote
|
|
{
|
|
/// Configure an MCP server that you connect to over HTTP
|
|
///
|
|
/// The name of your remote MCP server
|
|
"some-remote-server": {
|
|
/// The URL of the remote MCP server
|
|
"url": "https://example.com/mcp",
|
|
"headers": {
|
|
/// Any headers to send along
|
|
// "Authorization": "Bearer <token>
|
|
}
|
|
}
|
|
}
|