fivetran mcp for VS Code
io.github.yimingyan/fivetran-mcp
MCP server for Fivetran API - manage syncs, check status, and control data pipelines
client:VS Code
transport:stdio
runtime:pypi
Install fivetran mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "fivetran-api-key",
"description": "FIVETRAN_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "fivetran-api-secret",
"description": "FIVETRAN_API_SECRET",
"password": true
}
],
"servers": {
"fivetran-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"fivetran-mcp"
],
"env": {
"FIVETRAN_API_KEY": "${input:fivetran-api-key}",
"FIVETRAN_API_SECRET": "${input:fivetran-api-secret}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs