iFlow Search for VS Code
io.github.zhengyanglsun/iflow-search
MCP server for iFlow Search web search, image search, and URL fetch tools.
client:VS Code
transport:stdio
runtime:npm
Install iFlow Search in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "iflow-api-key",
"description": "IFLOW_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "iflow-mcp-client",
"description": "IFLOW_MCP_CLIENT",
"password": true
},
{
"type": "promptString",
"id": "iflow-mcp-client-version",
"description": "IFLOW_MCP_CLIENT_VERSION",
"password": true
},
{
"type": "promptString",
"id": "iflow-base-url",
"description": "IFLOW_BASE_URL",
"password": true
}
],
"servers": {
"iflow-search": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@iflow-ai/search-mcp"
],
"env": {
"IFLOW_API_KEY": "${input:iflow-api-key}",
"IFLOW_MCP_CLIENT": "${input:iflow-mcp-client}",
"IFLOW_MCP_CLIENT_VERSION": "${input:iflow-mcp-client-version}",
"IFLOW_BASE_URL": "${input:iflow-base-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs